ng2-charts:如何设置y轴的固定范围

问题描述 投票:3回答:3

我有一个使用ng2-charts模块的chart.js图表​​。该图在y轴上显示百分比,在x轴上显示时间。是否可以将y轴设置为显示0到100,而不是基于数据的动态范围?]

chart.js ng2-charts
3个回答
3
投票

尝试将以下内容添加到图表选项:

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

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


2
投票

以我的名字。component.html:

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

以我的名字。component.ts:

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

0
投票

是的,您可以通过使用y轴中的tickOption进行相同的操作

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
        }
    }]
  }
};

另外,stepsstepValue无法正常工作,我在他们的库中检查了该库,也没有写在那里。

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

在上面,我只需要y个条形图,所以我像这样设置数据,对于这三个值,我使用了相同大小的barChartLabels。

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

这对我有用,我希望它也可以在您的代码中使用:)

© www.soinside.com 2019 - 2024. All rights reserved.