Hi.
I use simple chart:
graph
dataset drawLine="1" anchorSides="20" anchorRadius="1"
set y="20" x="1210714434000"/
set y="30" x="1210689907000"/
set y="70" x="1210073446000"/
set y="40" x="1207173600000"/
/dataset>
/graph
all work fine - y range is 0-80
if i add for this chart yAxisMaxValue = 150:
graph yAxisMaxValue='150'
dataset drawLine="1" anchorSides="20" anchorRadius="1"
set y="20" x="1210714434000"/
set y="30" x="1210689907000"/
set y="70" x="1210073446000"/
set y="40" x="1207173600000"/
/dataset
/graph
then already all work - y range 0-150
, BUT!!! if i add for this chart yAxisMaxValue = 50:
graph yAxisMaxValue='50'
dataset drawLine="1" anchorSides="20" anchorRadius="1"
set y="20" x="1210714434000"/
set y="30" x="1210689907000"/
set y="70" x="1210073446000"/
set y="40" x="1207173600000"/
/dataset
/graph
then chart showing as in first variant - y range 0-80
i.e. if value of yAxisMaxValue < value of y from any then this parameter is ignored?
how i can showed this chart with max restriction = 50 (without removed from )?
Thanks,
Michael.