如何获得图表中最高数据点和x轴之间的像素长度?

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

enter image description here

我自己无法尝试很多事情,因为我不知道从哪里开始。

javascript chart.js
1个回答
0
投票

使用chart.scales [“ x轴-0”]。top获取红线的长度(以像素为单位。)>

  var ctx = document.getElementById('myChart').getContext('2d');
    var chart = new Chart(ctx, {
        // The type of chart we want to create
        type: 'line',

    // The data for our dataset
    data: {
        ...
        datasets: [{
          ...
        }]
    },

    // Configuration options go here
    options: {}
});
© www.soinside.com 2019 - 2024. All rights reserved.