Skip to content

Releases: nhn/tui.chart

v4.6.1

21 Dec 03:06
Compare
Choose a tag to compare

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

16 Nov 06:12
Compare
Choose a tag to compare

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

v4.4.3

27 Apr 08:14
Compare
Choose a tag to compare

Bug fixes

  • Add types selectSeries, unselectSeries into index.d.ts
  • Fix selectSeries behaviour in scatter/heatmap chart

v4.4.1

22 Oct 01:41
Compare
Choose a tag to compare

Chore

  • Add github action scripts to do release automation

v4.4.0

28 Sep 02:44
Compare
Choose a tag to compare

New Features

Add new option named 'colorByCategories' (#705)

It paints bar color based on categories.
iamge

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

28 Jul 06:36
Compare
Choose a tag to compare

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

21 Jun 06:27
Compare
Choose a tag to compare

Bug Fixes

  • Fix Error when clicking export menu(#645)

v4.3.4

24 May 23:56
Compare
Choose a tag to compare

Bug Fixes

  • Fix tooltip is not removed when mouseout canvas(#673)

v4.3.3

20 May 05:44
Compare
Choose a tag to compare

Bug Fixes

  • Fix Line chart using the zoomable option is not drawn properly when there are multiple null data.(#672)

v4.3.2

22 Apr 10:14
Compare
Choose a tag to compare

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)