Chartjs-Angular-chart.js tickmark issue

1👍

You can set your options for y axis to have max number of ticks on display like this.`

options : {
        scales: {
            yAxes: [{
                ticks: {
                beginAtZero: true,
                minTicksLimit: 5,
                maxTicksLimit: 7,
                autoSkip: true
                }
            }],

        },
        responsive: true
    },`

be mindful of axEs not axIs…

Leave a comment