0
我正在根據數據顯示圖表。如果數據不可用,則顯示空白圖表,看起來不太好。 所以 我想從c3.js中使用沒有數據選項,但不知何故它不適合我。C3.js無數據選項不顯示
function chartGenerator(chartId,measuresArray,dimensionArray,xLabel,chartType,criteria)
{
var chart = c3.generate({
bindto : chartId,
data: {
columns: measuresArray,
type: chartType,
empty: {
label: {
text: "No Data Available"
}
},
labels: true,
rotate: 75,
onclick: function(e) {
/* alert(e.value); */
//make all the bar opacity 0.1
d3.selectAll(".c3-shape").style("opacity",0.3);
var k = ".c3-shape-"+ e.index;
//make the clicked bar opacity 1
d3.selectAll(k).style("opacity",1)
d3.select('#'+criteria).property('value', "'"+dimensionArray[e.index]+"'");
changeChartView();
}
},
bar: {
width: {
ratio: 0.25 // this makes bar width 50% of length between ticks
}
},
axis : {
x : {
type : 'category',
categories : dimensionArray,
label : xLabel
},
y : {
label : "Incident Count"
}
}
});
}
請幫助...從這個...