🌷 Features
- 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[]})
- radar has
stack
,group
, andexpand
api
// expand to 100% layout
radar.expand();
// no stack layout
radar.group();
// standard stack layout
radar.stack();
- sort api
chart.sort(accessor, direction);