Releases: VizArtJS/vizart-path
Releases · VizArtJS/vizart-path
2.0.9
2.0.8
2.0.7
2.0.6
🐛 Bug-fix
Parallel Coordinate bugs
- [Reorderable doesn't work with matrix] (BigFatDog/parcoords-es#27)
- Two parcoords are linked
- Axes configuration
- updateAxes() broken?
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
API changes
v2 internally deprecates ES6 class inheritance and adopts object composition.
Do a global search and replace will seamlessly upgrade to v2. all chart names are in camelCase, no new
operator is needed anymore.
// v1
import { Chord } from 'vizart-path';
const chart = new Chord(domId, options);
// v2
import { chord } from 'vizart-path';
const chart = chord(domId, options);
chart names:
v1 | v2 |
---|---|
Chord | chord |
BiPartite | biPartite |
ParallelCoordinates | parallelCoordinates |
StrentchedChord | strentchedChord |
Sankey | sankey |
API Changes
//v1
transitionColor
//v2
color