我正在使用chartjs库创建一个饼图,我想知道如何表示动态渲染图表所需的值,
在chartjs.org教程中,数据数组表示如下
var data = [
{
value: 300,
color:"#F7464A",
highlight: "#FF5A5E",
labelColor : 'white',
labelFontSize : '16'
},
{
value: 100,
color: "#46BFBD",
highlight: "#5AD3D1",
labelColor : 'white',
labelFontSize : '16'
},
{
value: 100,
color: "#FDB45C",
highlight: "#FFC870",
labelColor : 'white',
labelFontSize : '16'
}
]
并且数据将作为参数传递以呈现图表
new Chart(ctx).Pie(data);
但是我想要渲染X分区,我如何制作数据数组呢?
我可以在循环中执行并将其附加到数据吗?
到目前为止代码:
function drawPie(ctx){
var newopts = {
inGraphDataShow: true,
inGraphDataRadiusPosition: 2,
inGraphDataFontColor: 'white',
}
//=========
// this should be dynamic (data will come the parameter)
//==========
var data = [
{
value: 300,
color:"#F7464A",
highlight: "#FF5A5E",
labelColor : 'white',
labelFontSize : '16'
},
{
value: 100,
color: "#46BFBD",
highlight: "#5AD3D1",
labelColor : 'white',
labelFontSize : '16'
},
{
value: 100,
color: "#FDB45C",
highlight: "#FFC870",
labelColor : 'white',
labelFontSize : '16'
}
]
new Chart(ctx).Pie(data, newopts);
}
答案 0 :(得分:1)
您只需要以Chart.js对饼图的预期方式生成数据结构,如果您不知道元素的最大数量生成颜色(如果您知道元素的最大数量,则可以从颜色数组中选择它。例如
var dynamicData = [
{ label: "One", value: 23 },
{ label: "Two", value: 33 },
{ label: "Three", value: 43 },
{ label: "Four", value: 53 },
]
dynamicData.forEach(function (e, i) {
e.color = "hsl(" + (i / dynamicData.length * 360) + ", 50%, 50%)";
e.highlight = "hsl(" + (i / dynamicData.length * 360) + ", 50%, 70%)";
// + any other code you need to make your element into a chart.js pie element
})
var ctx = document.getElementById("myChart").getContext("2d");
var myPieChart = new Chart(ctx).Pie(dynamicData);