using array values in chart.js data and label field(在 chart.js 数据和标签字段中使用数组值)
问题描述
我希望将数组的值传递给 chart.js 数据集的数据和标签字段.
I wish to pass values of an array to the data and label fields of the chart.js dataset.
这里是 ajax 调用成功获取 json 数据的代码.我获取 json 数据并将其存储到一个数组中.
Here the code from success of ajax call made to fetch json data. I fetch the json data and store it into an array.
Data = jQuery.parseJSON(result);
var count = Data.length;
var counter = 0;
while(count > 0) {
LabelResult[counter] =[Data[counter].TIME];
counter++;
count --;
}
现在我希望将此标签值用于标签字段.
Now i wish to use this label values into the labels filed.
var myChart = new Chart(ctx, {
type: 'bar',
data: {
labels: [LabelResult],
datasets: [{
label: '# of Votes',
data: [DataResult],
borderWidth: 1
}]
}
});
但似乎有一些问题,数据没有在图表上呈现
But there seems some issue and the data is not getting rendered on the chart
推荐答案
LabelResult是一个数组,改变
LabelResult is an array, change
labels: [LabelResult]
到
labels: LabelResult
还有:
data: [DataResult]
到
data: DataResult
喜欢:
var myChart = new Chart(ctx, {
type: 'bar',
data: {
labels: LabelResult,
datasets: [{
label: '# of Votes',
data: DataResult,
borderWidth: 1
}]
}
});
这篇关于在 chart.js 数据和标签字段中使用数组值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 chart.js 数据和标签字段中使用数组值
基础教程推荐
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01