mariusmuntean/ChartJs.Blazor

Setup min and max for axis

KhanFromChedum opened this issue · 0 comments

Describe your question

I want to know how to setup min and max value for axis.

Which Blazor project type is your question related to?

  • Server-Side

Which charts is this question related to?

My question is related to scattered chart

JavaScript equivalent

options: {
    scales: {
        yAxes: [{
            ticks: {
                suggestedMin: 50,
                suggestedMax: 100
            }
        }]
    }