You are correct that, if you add rows a few at a time, after it gets to
enough items per bucket that it switches to "bar" mode, then it also mixes
up which tooltip to show where.  We've been making fixes in this area, and
obviously got this part wrong.  I do expect we will be working on a fix for
this problem with higher priority.  Thanks for your report.


On Tue, Feb 25, 2014 at 2:56 AM, Dustqm Sybolls <[email protected]> wrote:

> If you can check attached image file, you can see the datas not on true
> locations.. What is the problem??
> Here is my codes;
>
>
> <script type="text/javascript" src="https://www.google.com/jsapi
> "></script>
> <script type="text/javascript">
> google.load("visualization", "1", {packages:["corechart"]});
> google.setOnLoadCallback(drawReportListChart);
> function drawReportListChart() {
> var data = new google.visualization.DataTable();
> data.addColumn('string', 'Name');
> data.addColumn('number', 'Value');
> data.addRows([["Name 1", 19],["Name 2", 16], ..other datas.. ]);
> var minValueOfhAxis = 0 - 10;
> var maxValueOfhAxis = 75 + 10;
> var bucketSize = 10;
> var options = {
> legend: { position: 'none' },
> histogram: {
> bucketSize: bucketSize,
> },
> hAxis: {
> maxValue: minValueOfhAxis,
> minValue: maxValueOfhAxis
> }
> };
> var chart = new
> google.visualization.Histogram(document.getElementById('reportChart_div'));
> chart.draw(data, options);
> }
> </script>
> <div id="reportChart_div" style="width: 1200px; height: 800px;"></div>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Google Visualization API" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to
> [email protected].
> Visit this group at
> http://groups.google.com/group/google-visualization-api.
> For more options, visit https://groups.google.com/groups/opt_out.
>



-- 
Daniel LaLiberte <https://plus.google.com/100631381223468223275?prsrc=2>  -
978-394-1058
[email protected] <[email protected]>   5CC, Cambridge MA
[email protected] <[email protected]> 9 Juniper Ridge
Road, Acton MA

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to