Skip to content

Releases: J-T-McC/vue3-chartjs

v2.0.0

10 Jun 22:24
9d5c997
Compare
Choose a tag to compare

What's Changed

  • ChartJS 4 Support
    • destroy event removed and replaced with with new afterDestroy event

Full Changelog: v1.3.0...v2.0.0

v1.3.0

05 Feb 07:18
Compare
Choose a tag to compare

What's Changed

  • Automatically register all ChartJS Registerables
  • Update import by @LeeLenaleee in #18

New Contributors

Full Changelog: v1.2.0...v1.3.0

v1.2.0

16 Oct 02:52
be2734f
Compare
Choose a tag to compare

Adds fixed width and height properties. Must be used with options.responsive: false

    const lineChart = {
      type: 'line',
      height: 200,
      width: 500,      
      options: {
        responsive: false
      },
      data: {
        // ...
      },
    }

v1.1.4

07 Aug 21:01
Compare
Choose a tag to compare

Migration from travis-ci.org to travis-ci.com

v1.1.3

07 Aug 20:29
Compare
Choose a tag to compare

Fixes UMD build undefined Chart bug

v1.1.2

29 May 08:32
Compare
Choose a tag to compare

Updated Examples

v1.1.1

08 May 01:58
Compare
Choose a tag to compare

Readme Update

Global Plugin Registration

07 May 03:35
Compare
Choose a tag to compare

Added Global plugin registration on install or via helper function

v1.0.0

11 Apr 03:15
2236e53
Compare
Choose a tag to compare

ChartJS 3.1 Support

Added support for ChartJS version 3.1

Updated tests and examples

v0.3.0

20 Mar 22:41
Compare
Choose a tag to compare
v0.3.0 Pre-release
Pre-release

Bug fixes and updates

Fixed bug with updating chart options

Added param to update method to control ChartJS reload animation speed