为什么我在执行“ for循环”以在ChartJS中显示“ datasets.data”后仅获得一个值

时间:2018-10-20 09:25:09

标签: javascript chart.js

我已经成功显示了值,但是为什么只显示一个值?我要按顺序输入值

这是我的代码

/*my datasets code*/
datasets: [{
  label: 'Daily Data',
  data: [730000, 1012000, 1220000, 1831000, 560000, 2012000, 890000],
  borderColor: '#3f89fb',
  borderWidth: 3,
  fill: false
}]

/*my tooltips code*/
tooltips: {
  callbacks: {
    label: function(tooltipItem, chart) {
      for (var i = 0; i < chart.datasets[0].data.length; i++) {
        return chart.datasets[0].data[i] / 1e6 + 'M';
      }
    }
  }
}

这是我的结果,全天价值为73万 enter image description here

3 个答案:

答案 0 :(得分:2)

查看Tooltip Item文档。

在这种情况下,tooltipItem.index包含该数据项在数据集中的索引。因此,您可以这样做返回值:

function(tooltipItem, chart) {
    return chart.datasets[0].data[tooltipItem.index] / 1e6 + 'M';
}

这是演示:

var ctx = document.getElementById("myChart").getContext('2d');
var myChart = new Chart(ctx, {
    type: 'line',
    data: {
        labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
        datasets: [{
            label: 'Daily Data',
            data: [730000, 1012000, 1220000, 1831000, 560000, 2012000, 890000],
            borderColor: '#3f89fb',
            borderWidth: 3,
            fill: false
        }]
    },
    options: {
        scales: {
            yAxes: [{
                ticks: {
                    beginAtZero:true
                }
            }]
        },
        tooltips: {
            callbacks: {
                label: function(tooltipItem, chart) {
                    return chart.datasets[0].data[tooltipItem.index] / 1e6 + 'M';
                }
            }
        }
    }
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.2/Chart.min.js"></script>
<canvas id="myChart" width="400" height="400"></canvas>

答案 1 :(得分:0)

这是因为return停止执行并退出该函数。 return总是立即退出其功能,如果在循环内,则不再执行。

查看此答案: Does return stop a loop?

答案 2 :(得分:0)

您可以将结果保存在下面的某处,而不是在for循环内返回而退出循环

var result = []
for (var i = 0; i < chart.datasets[0].data.length; i++) {
        result.push(chart.datasets[0].data[i] / 1e6 + 'M');
      }