pgraham
20 Aug 2009, 8:58 AM
Hi all,
I'm experiencing a bug with regards to default tooltips in LineCharts with hollow dots:
Code to reproduce:
LineChart line = new LineChart();
line.setTooltip("#x_label#<br>#val#%");
for (int val : values) {
HollowDot dot = new HollowDot(val);
line.addDots(dot);
}
Expected result:
Tooltip for all dots added to the line should be in the form:
My X Label
10%
Actual result:
Tooltip displayed is #val#
I'm experiencing a bug with regards to default tooltips in LineCharts with hollow dots:
Code to reproduce:
LineChart line = new LineChart();
line.setTooltip("#x_label#<br>#val#%");
for (int val : values) {
HollowDot dot = new HollowDot(val);
line.addDots(dot);
}
Expected result:
Tooltip for all dots added to the line should be in the form:
My X Label
10%
Actual result:
Tooltip displayed is #val#