ChartJs.Blazor icon indicating copy to clipboard operation
ChartJs.Blazor copied to clipboard

Setup min and max for axis

Open KhanFromChedum opened this issue 4 years ago • 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
            }
        }]
    }

KhanFromChedum avatar Jan 13 '22 08:01 KhanFromChedum