Download Latest Version v4.6.1.zip (2.2 MB)
Email in envelope

Get an email when there's a new version of TOAST UI Chart

Home / v4.4.0
Name Modified Size InfoDownloads / Week
Parent folder
README.md 2021-09-28 545 Bytes
v4.4.0.tar.gz 2021-09-28 1.7 MB
v4.4.0.zip 2021-09-28 2.2 MB
Totals: 3 Items   3.9 MB 0

New Features

Add new option named 'colorByCategories' (https://github.com/nhn/tui.chart/pull/705)

It paints bar color based on categories. iamge

:::js
const data = {
  categories: ['Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
  series: [
    {
      name: 'Budget',
      data: [5000, 3000, 5000, 7000, 6000, 4000, 1000],
      colorByCategories: true
    }
  ]
}
Source: README.md, updated 2021-09-28