Skip to content

v4.5.0

Compare
Choose a tag to compare
@jwlee1108 jwlee1108 released this 16 Nov 06:12
· 13 commits to main since this release

New Features

Add rangeSelection option on Line, Column Chart (#763)

rangeselection
range2

Refer to the code below to get the range you've selected.

chart.on('rangeSelection`, ([from, to]) => {
  console.log(`${from} ~ ${to}`);
})

Full Changelog: v4.4.3...v4.5.0