Skip to content

πŸ’Ž Release new version 2.7.0

Compare
Choose a tag to compare
@apertureless apertureless released this 04 Jul 09:15
· 517 commits to main since this release
v2.7.0

πŸ”₯ New Features

Scatter Chart #129

scatter

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)

Full Changelog

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: