Releases: nhn/tui.chart
Releases Β· nhn/tui.chart
v4.6.1
Bug fixes
- Fix problem when exporting csv from firefox in compliance with data URL spec
Full Changelog: v4.5.0...v4.6.1
v4.5.0
New Features
Add rangeSelection
option on Line, Column Chart (#763)
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
v4.4.3
Bug fixes
- Add types
selectSeries
, unselectSeries
into index.d.ts
- Fix
selectSeries
behaviour in scatter/heatmap chart
v4.4.1
Chore
- Add github action scripts to do release automation
v4.4.0
New Features
Add new option named 'colorByCategories'
(#705)
It paints bar color based on categories.
const data = {
categories: ['Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
series: [
{
name: 'Budget',
data: [5000, 3000, 5000, 7000, 6000, 4000, 1000],
colorByCategories: true
}
]
}
v4.3.6
Bug Fixes
- Fix do not make pie series model of zero value data (#684)
- Fix box type data labels using useSeriesColor option (#687)
- Fix chart option for rotatable story (#689)
- Fix remove library module name in vue wrapper build (#691)
- Fix to considering the chart layout in the axis rotation calculation (#695)
v4.3.5
Bug Fixes
- Fix Error when clicking export menu(#645)
v4.3.4
Bug Fixes
- Fix tooltip is not removed when mouseout canvas(#673)
v4.3.3
Bug Fixes
- Fix Line chart using the zoomable option is not drawn properly when there are multiple null data.(#672)
v4.3.2
Bug Fixes
- Resolve chart canvas background color transparency (#653)
- Resolve an abnormal value of the export data, when an object type is used for coordinate data as in scatter and line charts (#656)