Skip to content

Releases: J-T-McC/vue3-chartjs

v2.1.0

13 Feb 00:24
35765db

Choose a tag to compare

What's Changed

Full Changelog: v2.0.0...v2.1.0

v2.0.0

10 Jun 22:24
9d5c997

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

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

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

Choose a tag to compare

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

v1.1.3

07 Aug 20:29

Choose a tag to compare

Fixes UMD build undefined Chart bug

v1.1.2

29 May 08:32

Choose a tag to compare

Updated Examples

v1.1.1

08 May 01:58

Choose a tag to compare

Readme Update

Global Plugin Registration

07 May 03:35

Choose a tag to compare

Added Global plugin registration on install or via helper function

v1.0.0

11 Apr 03:15
2236e53

Choose a tag to compare

ChartJS 3.1 Support

Added support for ChartJS version 3.1

Updated tests and examples