I have a chart where the xaxis is defines as :
<e-chart-primaryxaxis valueType="Category" labelFormat="y" edgeLabelPlacement="Shift" interval="5" minimum="0" maximum="75"></e-chart-primaryxaxis>
The x-axis labels are 1,6,11,... why does it not start at 0 ?
Is I switch the minimum to -1 the labels are -1, 5, 10, 15, ...
The desired labels are 0, 5, 10, 15, ....
Any suggestions ?