π Release new version 2.7.0
π₯ New Features
Scatter Chart #129
The scatter chart is not really new, as it is only a derivation of the the line chart. However now it is available as a own chart type.
import {Scatter} from `vue-chartjs`
export default Scatter.extend({
...
})
β Please keep in mind, that the scatter chart is not working with the reactiveProp and data mixins, as the data structure is different then in the other charts.
Add support for inline plugins #137 (kurbar)
We exposed now a method to add inline plugin to your chart instance.
mounted () {
this.addPlugin({id: 'my-plugin', ....})
}
π Tutorials
You can find now some tutorials and other resources in the docs, on how to use vue-chartjs
and build cool application with it. π docs
Change Log
v2.7.0 (2017-07-04)
Closed issues:
- Reactive Data Tutorial #132
- Using inline plugins #130
- Scatter Chart #129
- Generating Chart after clicking submit button #128
- Ticks not working with reactive props #127
- Error in callback for watcher "chartData": "TypeError: Cannot read property 'data' of undefined" #126
- Passing the data from vue to chartjs #125
- Combination of Bar and Line Chart #123
- Reactive data example not working #122
- vue-chartjs height was 0 when i set v-show #120
- Bar chart, barPercentage in X axis #119
- update event not firing on data change #118
Merged pull requests:
- β Update tests for addPlugin method #140 (apertureless)
- Fix beforeDestory when renderChart was not called #139 (ZhangYiJiang)
- Add support for inline plugins #137 (kurbar)
- Feature/scatter chart #136 (apertureless)
- π Fix #122 reactive mixin #135 (apertureless)
- π Add resources & tutorials to docs #133 (apertureless)
- fix a typo in an example #131 (JobV)
- Update README #121 (stoykostanchev)