Skip to content

Commit

Permalink
update change log for v0.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
jiaming743 committed Nov 26, 2019
1 parent 2a00837 commit 4b5f519
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,36 @@
# 0.2.9-alpha (2019-11-26)

### Perfect

- **Bar:** Bar supports independent color, each bar can be set in different colors.
```javascript
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: [],
}
]
}
```

# 0.2.8-alpha (2019-10-24)

### Perfect
Expand Down

0 comments on commit 4b5f519

Please sign in to comment.