user2347528
user2347528

Reputation: 610

ng2-charts: How to set fixed range for y axis

I have a chart.js chart using ng2-charts module. The chart shows Percentage on y axis and time on x axis. Is it possible to set y axis to show 0 to 100 instead of dynamic range based on data?

Upvotes: 9

Views: 14257

Answers (3)

VIKAS KOHLI
VIKAS KOHLI

Reputation: 8470

Yes you can do the same by using tickOption in the y Axes

public barChartOptions: ChartOptions = {
responsive: true,
showLines: false,
tooltips: {enabled: false},
animation: {duration: 2000},
scales: {
    yAxes: [{
        gridLines: {
            display:false
        },
        display: false,
        ticks: {
          max : 100,
          min: 0
        }
    }]
  }
};

Also, steps and stepValue is not working and I checked the same in their library its not written there also.

barChartData: ChartDataSets[] = [
          {
            data: [40, 30, 30],
            "backgroundColor": this.bgColors
          }
 ];

In the above, I need only y bar graphs so I set the data like that and for the three values, I used the same size of barChartLabels.

barChartLabels: Label[] = ['A', 'B', 'C'];

This works for me, I hope it will work in your code too :)

Upvotes: 1

Sabin Bogati
Sabin Bogati

Reputation: 741

In my name.component.html:

<div style="display: block">
<canvas baseChart height="100" [datasets]="lineChartData" [labels]="lineChartLabels" [options]="lineChartOptions"
    [colors]="lineChartColors" [legend]="lineChartLegend" [chartType]="lineChartType"></canvas>

In my name.component.ts:

 public lineChartOptions: any = {
    scales : {
        yAxes: [{
            ticks: {
            beginAtZero: true,
                stepValue: 10,
                steps: 20,
              max : 50,
            }
        }]
      }
};

Upvotes: 4

Cookie
Cookie

Reputation: 176

Try adding the following to your chart options:

scales : {
  yAxes: [{
     ticks: {
        steps : 10,
        stepValue : 10,
        max : 100,
        min: 0
      }
  }]
}

https://github.com/valor-software/ng2-charts/issues/853

Upvotes: 8

Related Questions