dc.js条形图和刷问题

时间:2016-01-18 17:22:45

标签: dc.js

我正在尝试使用DC,D3和CrossFilter JS实现交互式数据可视化。但我面临三个问题。

  1. 条形图中条形的宽度
  2. 画笔是纯黑色
  3. X,Y轴线太粗。
  4. enter image description here

    我想增加条的宽度,并喜欢使用透明色的刷上功能。

    代码:

        dateChart.width(750)
        .margins({top: 10, right: 50, bottom: 30, left: 40})
        .elasticY(true)
        .dimension(timeDim)
        .group(dates)
                .brushOn(true)
        .gap(65)
                .transitionDuration(500)
                .centerBar(true)
       // .xUnits(function(){return 10;})
        .round(d3.time.day.round)
       // .renderlet(colorRenderlet)
        .x(d3.time.scale()
            .domain([new Date(2016, 0, 1), new Date(2016, 0, 31)])
            .rangeRound([0, 1 * 90]))
        .renderHorizontalGridLines(true)
        .filter([new Date(2016, 0, 1), new Date(2016, 0, 1)])
                .xAxis().tickFormat();
        //.fluctuationChart.yAxis().ticks(5);
    

0 个答案:

没有答案