Releases: apertureless/vue-chartjs
Releases · apertureless/vue-chartjs
💎 Release new version 2.3.0
Changelog
- Updated dependencies (vue.js & chart.js)
Breaking Change
- Changed mixin module imports. Seperated mixins in own module.
Old way was:
import { reactiveProp } from 'vue-chartjs'
Now:
// Load speperate modules
import { Line, mixins } from 'vue-chartjs'
export default Line.extend({
mixins: [mixins.reactiveProp],
props: ["chartData", "options"],
mounted () {
this.renderChart(this.chartData, this.options)
}
})or with destructive assign:
// Load speperate modules with destructure assign
import { Line, mixins } from 'vue-chartjs'
const { reactiveProp } = mixins
export default Line.extend({
mixins: [reactiveProp],
props: ["chartData", "options"],
mounted () {
this.renderChart(this.chartData, this.options)
}
})💎 Release new version 2.2.1
Update chartjs and vuejs dependencies
💎 Release new version 2.2.0
Change Log
v2.2.0 (2016-10-24)
Closed issues:
Merged pull requests:
- add horizontal bar parameter #14 (wahaha2012)
- WIP Feature/reactive chart data #11 #11 (apertureless)
💎 Release new version 2.1.1
Now that Vue.js is out of RC, we also drop the @next tag and v1 support.
You now install the v2 per default with npm i vue-chartjs.
There will be also no active development for the v1.x
However if you want to install the v1 version you still can with npm i vue-chartks@1.1.3
💎 vue-chartjs@next
Stable Vue 2.0 Release
- Added Bubble Chart
- Added
chartIdas prop so you can define your own id now - Fixed width and height props. Keep in mind that you have to set
responsiveandmaintainAspectRatiooptions to false so the props have effect on your chart - Added Tests
💎 Release new version 1.1.3
💎 Release new version 1.1.2
- Fix Issue #8
⬆️ Update dependency ChartJs
💎 Release new version 1.1.0
Features
- Added mergedOptions discussed in #5 to merge user chart options with default options