Fix Tooltip

master
John Kiernander 2013-08-16 16:01:55 +01:00
parent 2eead4a89a
commit 503396e951
3 changed files with 5 additions and 5 deletions

4
dist/dimple.v1.js vendored
View File

@ -2355,7 +2355,7 @@ var dimple = {
}, this);
} else {
// Add the axis measure value
rows.push(series.x.measure + ": " + series.x._getFormat()((e.cx === e.x ? e.xValue : e.cx - e.x)));
rows.push(series.x.measure + ": " + series.x._getFormat()(e.width));
}
if (series.y._hasTimeField()) {
@ -2367,7 +2367,7 @@ var dimple = {
}, this);
} else {
// Add the axis measure value
rows.push(series.y.measure + ": " + series.y._getFormat()((e.cy === e.y ? e.yValue : e.cy - e.y)));
rows.push(series.y.measure + ": " + series.y._getFormat()(e.height));
}
if (series.z !== null && series.z !== undefined) {

File diff suppressed because one or more lines are too long

View File

@ -307,7 +307,7 @@
}, this);
} else {
// Add the axis measure value
rows.push(series.x.measure + ": " + series.x._getFormat()((e.cx === e.x ? e.xValue : e.cx - e.x)));
rows.push(series.x.measure + ": " + series.x._getFormat()(e.width));
}
if (series.y._hasTimeField()) {
@ -319,7 +319,7 @@
}, this);
} else {
// Add the axis measure value
rows.push(series.y.measure + ": " + series.y._getFormat()((e.cy === e.y ? e.yValue : e.cy - e.y)));
rows.push(series.y.measure + ": " + series.y._getFormat()(e.height));
}
if (series.z !== null && series.z !== undefined) {