Skip to content

Releases: apertureless/vue-chartjs

💎 Release new version 2.3.0

17 Dec 17:28

Choose a tag to compare

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

07 Dec 07:47
d980e32

Choose a tag to compare

Update chartjs and vuejs dependencies

💎 Release new version 2.2.0

24 Oct 09:37

Choose a tag to compare

Change Log

v2.2.0 (2016-10-24)

Full Changelog

Closed issues:

  • question:syntax with vue-loader #12
  • Rerender when data has changed #10

Merged pull requests:

💎 Release new version 2.1.1

02 Oct 07:33

Choose a tag to compare

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

23 Sep 13:06
0a04114

Choose a tag to compare

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 responsive and maintainAspectRatio options to false so the props have effect on your chart
  • Added Tests

💎 Release new version 1.1.3

08 Sep 11:44
v1.1.3

Choose a tag to compare

v1.1.3 (2016-09-08)

Full Changelog

Implemented enhancements:

  • Add test #1

Fixed bugs:

  • Passing chart size (width / height) as prop doesnt resize the chart #8

Merged pull requests:

💎 Release new version 1.1.2

07 Sep 08:26
45d500d

Choose a tag to compare

⬆️ Update dependency ChartJs

23 Aug 19:02

Choose a tag to compare

💎 Release new version 1.1.0

21 Aug 12:47
a3bed8b

Choose a tag to compare

Features

  • Added mergedOptions discussed in #5 to merge user chart options with default options