dc.js v0.7 released with:
This simple renderlet basically changes all bubbles in the bubble chart to green. Obviously you can do something a lot more complicate then this for example maybe encode another dimension of information into the coloring of the bubbles.
![]()
- elastic x axis support
- improved bar chart position accuracy
- renderlet support for injecting custom rendering logic
- chart scoping support with update/redraw group
- grid lines support on all coordinate charts
yearlyBubbleChart.renderlet(function(chart){
chart.selectAll("circle.bubble").attr("fill", "green");
});
This simple renderlet basically changes all bubbles in the bubble chart to green. Obviously you can do something a lot more complicate then this for example maybe encode another dimension of information into the coloring of the bubbles.