如何设置Y轴的最大值和最小值

问题描述 投票:128回答:16

我正在使用http://www.chartjs.org/的折线图

如您所见,Y轴的最大值(130)和最小值(60)是自动选择的,我希望最大值= 500,最小值= 0。这可能吗?

chart.js
16个回答
63
投票

你必须覆盖比例,试试这个:

window.onload = function(){
    var ctx = document.getElementById("canvas").getContext("2d");
    window.myLine = new Chart(ctx).Line(lineChartData, {
        scaleOverride : true,
        scaleSteps : 10,
        scaleStepWidth : 50,
        scaleStartValue : 0 
    });
}

7
投票

这适用于Charts.js 2.0:

其中一些不起作用的原因是因为您应该在创建图表时声明您的选项,如下所示:

yAxes: [{
    display: true,
    ticks: {
        beginAtZero: true,
        steps:10,
        stepValue:5,
        max:100
    }
}]

有关此文档,请访问:$(function () { var ctxLine = document.getElementById("myLineChart"); var myLineChart = new Chart(ctxLine, { type: 'line', data: dataLine, options: { scales: { yAxes: [{ ticks: { min: 0, beginAtZero: true } }] } } }); })


4
投票

我写了一个js,在y轴上显示0到100之间的值,间隙为20。

这是我的script.js

这是网络上显示的图表。

//x-axis var vehicles = ["Trucks", "Cars", "Bikes", "Jeeps"]; //The percentage of vehicles of each type var percentage = [41, 76, 29, 50]; var ctx = document.getElementById("barChart"); var lineChart = new Chart(ctx, { type: 'bar', data: { labels: vehicles, datasets: [{ data: percentage, label: "Percentage of vehicles", backgroundColor: "#3e95cd", fill: false }] }, options: { scales: { yAxes: [{ ticks: { beginAtZero: true, min: 0, max: 100, stepSize: 20, } }] } } });


3
投票

使用1.1.1,我使用以下内容来修正0.0和1.0之间的比例:

Percentage of vehicles in the town

0
投票

由于上面没有一个建议帮助我使用charts.js 2.1.4,我通过将值0添加到我的数据集数组(但没有额外的标签)来解决它:

var options = {
    scaleOverride: true,
    scaleStartValue: 0,
    scaleSteps: 10,
    scaleStepWidth: 0.1
}

0
投票

我在我的多个项目中使用了旧版本的Flat Lab模板,这些项目使用的是chart.js的v1.x,我不确定。我无法更新到v2.x,因为我已经有多个项目使用它了。上面提到的statsData.push(0); [...] var myChart = new Chart(ctx, { type: 'horizontalBar', data: { datasets: [{ data: statsData, [...] 不适合我。

所以这是版本1.x的黑客攻击

(bardata,options)

替换为:

calculatedScale = calculateScale(scaleHeight,valueBounds.maxSteps,valueBounds.minSteps,valueBounds.maxValue,valueBounds.minValue,labelTemplateString);

0
投票

在我的情况下,我在yaxis ticks中使用了一个回调,我的值是百分比,当它达到100%时它没有显示点,我使用了这个:

calculatedScale = calculateScale(scaleHeight,valueBounds.maxSteps,1,valueBounds.maxValue,0,labelTemplateString);

它运作良好。


0
投票

图表具有“最小”和“最大”值。此链接上的文档

yAxes: [{ ticks: { beginAtZero: true, steps: 10, stepValue: 5, max: 100.1, callback: function(value, index, values) { if (value !== 100.1) { return values[index] } } } }],


214
投票

对于chart.js V2(beta),请使用:

var options = {
    scales: {
        yAxes: [{
            display: true,
            ticks: {
                suggestedMin: 0,    // minimum will be 0, unless there is a lower value.
                // OR //
                beginAtZero: true   // minimum value will be 0.
            }
        }]
    }
};

有关详细信息,请参阅chart.js documentation on linear axes configuration


47
投票

var config = {
            type: 'line',
            data: {
                labels: ["January", "February", "March", "April", "May", "June", "July"],
                datasets: [{
                        label: "My First dataset",
                        data: [10, 80, 56, 60, 6, 45, 15],
                        fill: false,
                        backgroundColor: "#eebcde ",
                        borderColor: "#eebcde",
                        borderCapStyle: 'butt',
                        borderDash: [5, 5],
                    }]
            },
            options: {
                responsive: true,
                legend: {
                    position: 'bottom',
                },
                hover: {
                    mode: 'label'
                },
                scales: {
                    xAxes: [{
                            display: true,
                            scaleLabel: {
                                display: true,
                                labelString: 'Month'
                            }
                        }],
                    yAxes: [{
                            display: true,
                            ticks: {
                                beginAtZero: true,
                                steps: 10,
                                stepValue: 5,
                                max: 100
                            }
                        }]
                },
                title: {
                    display: true,
                    text: 'Chart.js Line Chart - Legend'
                }
            }
        };

        var ctx = document.getElementById("canvas").getContext("2d");
       new Chart(ctx, config);
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.2.1/Chart.bundle.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<body>
  <canvas id="canvas"></canvas>
</body>

33
投票

ChartJS v2.4.0

如2017年2月7日qazxsw poi的例子所示(因为这似乎经常变化):

https://github.com/jtblin/angular-chart.js

这将产生5个y轴值:

var options = {
    yAxes: [{
        ticks: {
            min: 0,
            max: 100,
            stepSize: 20
        }
    }]
}

21
投票

在2016年写这个,而Chart js 2.3.0是最新的。以下是如何改变它的方法

100
80
60
40
20
0

15
投票

以上答案对我不起作用。可能自11年以来选项名称发生了变化,但以下是我的诀窍:

              var options = {
                    scales: {
                       yAxes: [{
                                display: true,
                                stacked: true,
                                ticks: {
                                    min: 0, // minimum value
                                    max: 10 // maximum value
                                }
                       }]
                    }
               };

13
投票
ChartJsProvider.setOptions
  scaleBeginAtZero: true

我在v2中使用'options'进行配置。

你应该阅读文档:window.onload = function(){ var ctx = document.getElementById("canvas").getContext("2d"); window.myLine = new Chart(ctx ,{ type: 'line', data: yourData, options: { scales: { yAxes: [{ ticks: { beginAtZero:true, min: 0, max: 500 } }] } } });


7
投票

只需在选项中设置scaleStartValue的值即可。

http://www.chartjs.org/docs/#scales-linear-scale

请参阅此var options = { // .... scaleStartValue: 0, } 的文档。


7
投票
© www.soinside.com 2019 - 2024. All rights reserved.