Home Forums Chart Support Set XAxis Value to start at 0 Reply To: Set XAxis Value to start at 0

#11295

Extrabeefy,

To start both axis at 0 you can set axisX minimum and axisY minimum to 0 as shown in the code snippet below –

axisX: {
   minimum: 0
 },
 axisY: {
   minimum: 0
 },

Also, kindly take a look at this JSFiddle for a complete working code.

setting minimum value for both axis