The string that defines the lowest and highest value in charts_graphs_google_charts.class.inc on line 135 is always set to the highest and lowest value of the series of present values.
With just one value this is problematic, because the value will result in the graph not being shown (chdx = ', ').
With multiple values this is also not correct because the y-axis is correctly labeled beginning at 0, but the first value will always start from the bottom (due to the value being "cropped", by the chdx-setting in the final graph).
This behaviour is ok, until we can set a min value for the graph, but at least the labelling of the y-axis should be changed to represent the set value.
Thanks for the work on this module!
Comments
Comment #1
archnode commentedSorry, the variable is named chds and the above example should be (chds= 'value, value').
Comment #2
rsevero commentedFixed the minimum y series value to zero with http://drupal.org/cvs?commit=405452 and http://drupal.org/cvs?commit=405454 (this gotta be a new record: two commits to change one value :)
Comment #3
rsevero commentedThanks for the report.