I have the following URL to generate a line chart, however I'm struggling to get the Y Axis to cooperate with the range.
I was under the impression that adding the chxr
parameter would fix this?
I have the following URL to generate a line chart, however I'm struggling to get the Y Axis to cooperate with the range.
I was under the impression that adding the chxr
parameter would fix this?
chxr
is used to set the axis range
as noted in the docs, the parameter uses the following syntax...
chxr
=<axis_index>,<start_val>,<end_val>,<opt_step>
where...
<axis_index>
= 0
for x-axis
<axis_index>
= 1
for y-axis
as such, the parameter is defined incorrectly...
where you have --> chxr=0,10,200
change to --> chxr=1,10,200
see following link...
note: This API has been deprecated. See the deprecation policy for details.