Fix Tooltip

gh-pages
John Kiernander 2013-08-16 16:02:43 +01:00
parent 90ad7684a2
commit 1489319ef1
2 changed files with 3 additions and 3 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