Skip to content

Releases: VizArtJS/vizart-path

2.0.9

12 Dec 15:51
Compare
Choose a tag to compare

🐛 Bug-fix

  • Upgrade parcords-es to adopt 2 new PRs

2.0.8

09 Dec 16:05
Compare
Choose a tag to compare

🌷 Features

  • #3 Refine color api
// use a new scheme
chart.color({scheme: 'Blues'});
// or change type
chart.color({type: 'sequential'});
// or both
chart.color({type: 'sequential', scheme[...]});
  • demo pages have been revised

2.0.7

08 Dec 20:16
Compare
Choose a tag to compare

🐛 Bugfix

  • Release in format of esm.js
  • Canvas layer position

2.0.6

03 Jul 01:41
Compare
Choose a tag to compare

🐛 Bug-fix
Parallel Coordinate bugs

2.0.5

18 Jun 18:41
Compare
Choose a tag to compare

🐛 Bug-fix

  • Parallel Coordinates shared brush state among multi instances

2.0.4

29 May 01:49
Compare
Choose a tag to compare

🐛 Bugfix

  • fix parcoord dimension axis

2.0.3

24 May 14:36
Compare
Choose a tag to compare

🐛 BugFix

  • ParallelCoordinates detects dimensions types
  • ParallelCoordinates click to reset brush states in 1d-axes-multi mode

2.0.2

11 May 01:48
Compare
Choose a tag to compare

🐛 bugfix
parallel coordinates supports customized dimension yScale

2.0.1

09 Apr 02:00
Compare
Choose a tag to compare

Parallel Coordinates supports 1d multiple brushes

2.0.0

28 Mar 03:12
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:

v1 v2
Chord chord
BiPartite biPartite
ParallelCoordinates parallelCoordinates
StrentchedChord strentchedChord
Sankey sankey

API Changes

//v1
transitionColor
//v2
color