d3.chart.base icon indicating copy to clipboard operation
d3.chart.base copied to clipboard

A base chart for creating d3.chart based charts.

Results 4 d3.chart.base issues
Sort by recently updated
recently updated
newest added

Looking at the code, this should probably say "`mobile`".

In IE9, d3.chart.base charts fail to initialize with the following error: `Invalid argument. d3.js, line 32 character 7` This corresponds to the following method in d3: ``` d3_style_prototype.setProperty = function(name,...

Do you think margins have a place in a base chart such as this one? How have you implemented margins in your work with d3.chart so far?

I'm trying to understand the `initAttr` function: ``` js function _initAttr(internalName, d3Name, defaultValue) { if (!this.base.attr(d3Name)) { this[internalName] = defaultValue; this.base.attr(d3Name, defaultValue); } else { this[internalName] = this.base.attr(d3Name); } }...