Closed romsson closed 7 years ago
Add a public method to set parameters as a JSON object. E.g. as an alternative to:
d3.gridding() .size([width, height]) .mode("coordinate") .valueX("__x") .valueY("__y") .valueWidth("__width") .valueHeight("__height");
do
d3.gridding() .params({ "size": [width, height], "mode": "coordinate", "valueX": "__x", "valueY": "__y", "valueWidth": "__width", "valueHeight": "__height" })
Add a public method to set parameters as a JSON object. E.g. as an alternative to:
do