Hi,
I've a strange bug.
I'm building a linechart on google visualization using datasource.
The drawing of the chart works great,
but when I mouse over certain metrics in my line, the value is not presented with the real metrics values.
For example, I attached a printscreen, where you can see that the value presented for imps for 1/5/13 is 923, where it actually 23,344,122.
Here is the part of my code that I'm actually drawing the line chart:
================================================
var options = {
width: 600, height: 400,
vAxes: { 0: {format: "#,###"},
1: {format: "#,###"}
},
series: {
0:{targetAxisIndex: 0 },
1: {targetAxisIndex: 1}
}
};
visualization = new google.visualization.LineChart(document.getElementById('visualization'));
visualization.draw(data,options);
=================================================
Any ideas why?
Thanks.