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 数据和标签字段中使用数组值
- 400或500级别的HTTP响应 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- addEventListener 在 IE 11 中不起作用 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01