I created a line chart in Highcharts and i want the maximum to be 19. So i found the option max
yAxis: {
max: 19;
}
But Highcharts rounds the max to 20 and i realy don't want this becouse 19 is the highest value posible for this variable. I've tested it with 21 and this results in a max of 30.
How can i for Highcharts to respect my max?