是否可以在d3堆积区域图表中传递x-Axis的字符串值。 我尝试了两种类型的方法来传递xAxis的字符串值,
1) chart.xAxis.tickFormat(function(d) {
var dx = data[0].values[d] && data[0].values[d].x || 0;
if (dx)
return dx;
else
return '';
});
2) and also changed the .x(function(d){
return d[0];
})
第二个语句返回字符串值,但在绘制xAxis时,滴答声不可见并抛出错误
在stackedAreaChart.js
中selection.each(function(data){