Hi,
I am using jqx chart to render data I input in jqx grid. Grid data allows negative values also so I set
valueAxis:
{
minValue: 'auto',
maxValue: 'auto',
displayValueAxis: true,
description: "",
axisSize: 'auto',
},
Everything works fine if I have negative values in the grid. But if I have only positive values chart is rendered from minimal value, not from zero which is misleading.
Is there a way to force grid to render from zero if there is only positive values, and also render negative values if user enters it.
Thanks