Hi
I know that the min and max values for a charts valueAxis and categoryAxis (xAxis) can be defined in the settings.
These informations can later be claimed by code like:
var xAxis = $('#chart').jqxChart('categoryAxis');
var yAxis = $('#chart').jqxChart('seriesGroups')[0].valueAxis;
xMin = xAxis.minValue;
xMax = xAxis.maxValue;
yMin = yAxis.minValue;
yMax = yAxis.maxValue;
If one ore all of these properties have not been defined within the settings than the chart is genereating dynamic axis ranges, what is good from my point of view.
But how do I than get the values for these ranges out of the chart?
The way above only returns ‘undefined’.
Did I miss something or do i have always to nail down the min and max values for the axis if i want to digg them later on out of the chart?