Releases: DataV-Team/Charts
Releases · DataV-Team/Charts
0.2.18-alpha (2020-10-30)
Lock Dependencies
- @jiaminghi/c-render: lock
^0.4.3
.
0.2.17-alpha (2020-07-02)
Bug Fixes
- numberText: Fix: When rendering, 0 is ignored.
V0.2.16-alpha (2020-06-16)
Perfect
- numberText: Add number formatter.
V0.2.15-alpha (2020-05-06)
Perfect
- pie: Optimization percent calculation.
V0.2.14-alpha (2019-05-02)
Perfect
- numberText: Graph of numberText support
\n
to line feed.
V0.2.13-alpha (2020-04-15)
Perfect
- Axis: Perfect axis calculation of min & max.
V0.2.12-alpha (2020-01-15)
Perfect
- Pie: Optimized percentage accuracy calculation.
V0.2.11-alpha (2020-01-05)
Bug Fixes
- util->deepMerge: Object property references are the same in some cases.
V0.2.10-alpha (2019-12-25)
Bug Fixes
- Pie:
PercentToFixed
exception display.
V0.2.9 (2019-11-26)
- Bar: Bar supports independent color, each bar can be set in different colors.
const config = { someConfig, series: [ { type: 'bar', /** * @description Independent color mode * When set to true, independent color mode is enabled * @type {Boolean} * @default independentColor = false */ independentColor: true, /** * @description Independent colors * Only effective when independent color mode is enabled * Default value is the same as the color in the root configuration * Two-dimensional color array can produce gradient colors * @type {Array} * @example independentColor = ['#fff', '#000'] * @example independentColor = [['#fff', '#000'], '#000'] */ independentColors: [], } ] }