d3堆积区域字符串值xAxis

时间:2012-09-26 09:31:08

标签: d3.js stacked-area-chart

是否可以在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){

0 个答案:

没有答案