Skip to content

v2.0.8

Latest
Compare
Choose a tag to compare
@BigFatDog BigFatDog released this 09 Dec 01:57
· 16 commits to master since this release

🌷 Features

  1. new color api
// use a new scheme
chart.color({scheme: ...})
// use a new type
chart.color({type:'categorical'})
// both type and scheme
chart.color({type: 'categorical', scheme[]})
  1. radar has stack, group, and expand api
// expand to 100% layout
radar.expand();
// no stack layout
radar.group();
// standard stack layout
radar.stack();
  1. sort api
chart.sort(accessor, direction);