Hello Mushi,
You can use the option ticks
for the yaxis
and xaxis
on the JS code that initializes the chart:
(js/exmples/examples.charts.js):
....
...
..
yaxis: {
min: 0,
max: 6500,
color: 'rgba(0,0,0,0.1)',
ticks: [[0, "0"], [100, "100"], [200, "200"], [400, "400"], [700, "700"], [1100, "1100"], [6500, "6500"]]
},
xaxis: {
min: 0,
max: 24,
color: 'rgba(0,0,0,0.1)',
ticks: [[0, "0"], [2, "2"], [4, "4"], [6, "6"], [10, "10"], [12, "12"], [14, "14"], [16, "16"], [18, "18"], [20, "20"], [22, "22"], [24, "24"]]
},
...
...
..
Please try that and let us know if you need further assistance.
Kind Regards,
Rodrigo.