Skip to content

Releases: VizArtJS/vizart

2.0.1

29 May 14:50
Compare
Choose a tag to compare

🐛 Bugfix

  • CirclePack's search function doesn't work
  • ParallelCoordinates' multi brush

🌷 Features

  • Coding style
  • Demos are simplified

2.0.0

28 Mar 03:34
Compare
Choose a tag to compare

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

29 Jan 16:04
Compare
Choose a tag to compare

Improve coding styles and documentation for all sub modules

v1.0.0

29 Jan 16:03
Compare
Choose a tag to compare