You can use the new ChartLayoutInterface (available on some, but not all,
charts) to get that data. Create a "ready" event handler with this code:
google.visualization.events.addListener(chart, 'ready', function () {
var cli = chart.getChartLayoutInterface();
var chartAreaBounds = cli.getBoundingBox('vAxis#0#gridline');
var top = chartAreaBounds.top;
var height = chartAreaBounds.height;
var yAxisBase = cli.getVAxisValue(top + height);
// or
var yAxisBase = cli.getVAxisValue(top + height - 0.5);
});
There is some margin of error involved, as the axis may not actualy line up
on a specific pixel, so sometimes you have to adjust, and the only good way
to know whether or not you have to adjust is by testing.
On Monday, September 2, 2013 8:30:08 AM UTC-4, [email protected] wrote:
>
> Forgot to add the source for the image:
> https://developers.google.com/chart/interactive/docs/gallery/combochart
>
> On Monday, September 2, 2013 5:59:06 PM UTC+5:30, [email protected]:
>>
>> Is it possible to get the minimum calculated value on the google chart?
>>
>>
>> <https://lh5.googleusercontent.com/-YH---oBJvrk/UiSEcw2Nx8I/AAAAAAAAAAM/P5HFOuVZaJE/s1600/chart.png>
>> The image might be more helpful. Thanks.
>>
>
--
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.