Configure X and Y axis scales
masterWhen configuring the scales for the X or Y axis, you must maintain a specific mathematical relationship between the maximum value, the number of sections, and the step value to avoid rendering errors.
For the Y axis:
You must use maxY, yNoOfSections, and yStepValue together following this formula:
maxY = yNoOfSections * yStepValue
For the X axis:
You must use maxX, xNoOfSections, and xStepValue together following this formula:
maxX = xNoOfSections * xStepValue
Using only one or two of these properties without the third may produce incorrect or absurd chart results.