ChartJS Y轴比例值错误

问题描述 投票:0回答:1

我有一张图表,y轴比例似乎是错误的。

这里是输入的数据。

data: {
        labels: [1, 2, 3, 4, 5, 6],
        datasets: [
                     {
                        label: '911',
                        lineTension: 0,
                        fill: false,
                        borderColor: '#4cfbb3', // (random) 
                        data: [ 10381, 11381, 19381, 19381, 2381 ]
                     }
                  ]
      }

图表:chart

如您所见,第1天的数据应分别绘制在大约10k的图表上,而图表刚好在6k以上。此外,最大值是19381,甚至是两次,并且在图表上它显示最大值就在12k上。]

我无法精确设置硬编码的刻度,因为此数据刻度一直在变化。这是json的其余部分:

{
      type:'line',
      data:{
        labels:[],
        datasets:[]
      },
      options:{
        legend: {
          display: true,
          position: 'top',
          fontColor: 'white',
          fontSize: 20,
          labels: {
            fontColor: 'white',
            fontSize: 20
          }
        },
        responsive: true,
        scales: {
          yAxes: [{
            stacked: false,
            scaleLabel: {
              display: true,
              fontColor: 'white',
              fontSize: 25,
              labelString: 'Faction Points'
            },
            ticks: {
              fontColor: 'white',
              fontSize: 20,
              min: 0
            }
          }],
        xAxes: [{
          stacked: false,
          scaleLabel: {
            display: true,
            fontColor: 'white',
            fontSize: 25,
            labelString: 'Day'
          },
          ticks: {
            fontColor: 'white',
            fontSize: 20,
            min: 0
          }
        }]
        }
      }
    }

非常感谢您提供有关如何解决此问题的帮助,谢谢!

我有一张图表,y轴比例似乎是错误的。这是放入的数据。data:{标签:[1、2、3、4、5、6],数据集:[{标签:...

javascript chart.js
1个回答
0
投票

给出您的代码,我只是添加了color的更改,以更好地可视化不同点的确切位置。对我来说,这看起来不错。也请发布您的CSS定义。

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