Releases: VizArtJS/vizart
Releases · VizArtJS/vizart
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:
Path
v1 | v2 |
---|---|
Chord | chord |
BiPartite | biPartite |
ParallelCoordinates | parallelCoordinates |
StrentchedChord | strentchedChord |
Sankey | sankey |
Hierarchy
v1 | v2 |
---|---|
CirclePack | circlePack |
IcicleTree | icicleTree |
SequentialSunburst | sequentialSunburst |
Sunburst | sunburst |
WeightedTree | weightedTree |
Basic
v1 | v2 |
---|---|
Bar | bar |
Area | area |
Line | line |
Pie | pie |
Row | row |
Scatter | scatter |
Stream | stream |
Corona | corona |
StackedBar | stackedBar |
StackedArea | stackedArea |
MultiLine | multiLine |
Geo
v1 | v2 |
---|---|
Choropleth | choropleth |
API Changes
//v1
transitionColor
//v2
color
More changes
Please refer to each module's release notes for more specific API changes:
v1.0.1
v1.0.0
Initial release