Bill Dwyer
Bill Dwyer
Example in symbolFactories.ts ```typescript export function circle(): SymbolFactory { return (symbolSize: number) => { return d3.symbol().type(d3.symbolCircle).size(Math.PI * Math.pow(symbolSize / 2, 2)); }; } ``` to ```typescript export const circle: SymbolFactory...
If you click on the resize handle of an area selection on a bar chart, it will select the bar without clearing the area. This is inconsistent since other selections...
Tried to use this sweet library in node.js, but failed. 1) There is no `dist` directory, so package.json's `main` property points to a file that doesn't exist. 2) Even if...