Name | Modified | Size | Downloads / 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.
:::js
const data = {
categories: ['Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
series: [
{
name: 'Budget',
data: [5000, 3000, 5000, 7000, 6000, 4000, 1000],
colorByCategories: true
}
]
}