syntagmatic / parallel-coordinates

A d3-based parallel coordinates plot in canvas. This library is no longer actively developed.
http://syntagmatic.github.com/parallel-coordinates/
Other
511 stars 211 forks source link

Canvas to SVG #38

Open ekatzenstein opened 10 years ago

ekatzenstein commented 10 years ago

Is there a quick way to convert parcoords to svg format? I'm trying to download parallel coordinates as an svg using SVG Crowbar. I'm not familiar with canvas, but downloading a vector file help with post work for publication.

syntagmatic commented 10 years ago

I'd recommend creating that chart from the original SVG parallel coordinates example. Perhaps even without brushing, since the data will be pre-filtered.

http://bl.ocks.org/mbostock/7586334

I am considering adding both SVG and WebGL rendering for publication and large datasets, respectively, but these alternate outputs aren't in the library yet.

Marking as enhancement.

syntagmatic commented 10 years ago

d3.svg.line has a nice set of interpolators to check out as well, when working with the SVG version.

https://github.com/mbostock/d3/wiki/SVG-Shapes#line_interpolate

fsausset commented 10 years ago

SVG and WebGL would be nice and useful renderers!