Chartjs-How to set min Value a step down of min value received from database in Y Axis in ChartJS

0👍

add this into your chart options

scales: {
        y: {
            min: 500,
            ticks: {
                stepSize: 500
            }
        }
    } 

Leave a comment