Skip to content

Releases: chartist-js/chartist

v1.3.0

03 Nov 11:45
Compare
Choose a tag to compare

Features

Bug Fixes

v1.2.1

05 Oct 19:36
Compare
Choose a tag to compare

Bug Fixes

v1.2.0

03 Oct 20:48
Compare
Choose a tag to compare

Features

Bug Fixes

v1.1.3

23 Sep 11:00
Compare
Choose a tag to compare

Bug Fixes

v1.1.2

14 Aug 09:38
Compare
Choose a tag to compare

Bug Fixes

  • add id field to AnimationDefinition interface (#1351) (4012c43)

v1.1.1

13 Aug 15:52
Compare
Choose a tag to compare

Bug Fixes

v1.1.0

13 Aug 15:40
Compare
Choose a tag to compare

Features

  • add ResponsiveOptions type helper, add generic type to Svg#getNode method (#1347) (7dd3ba2)

Bug Fixes

v1.0.0

08 Aug 20:55
Compare
Choose a tag to compare

⚠ BREAKING CHANGES

Features

Phenakistoscope

16 Nov 22:23
Compare
Choose a tag to compare

This Release brings you SMIL animations with an easy to use API! You can now animate the elements on your chart with the Chartist.Svg API. Check the gh-page for more details.

This release also includes more events like created (thanks to @drewbarontini and @jordanwade for the PR!), draw event for line and a draw event for area.

Proto

18 Oct 13:08
Compare
Choose a tag to compare

This release only includes changes relevant for developers. Chartist.js does now include a prototype helper module and all the charts are refactored to inherit from a base chart. This makes maintainability easier in the future and will also help with problems that have a polymorph nature (like multiple charts combined / combo chart).

In the prototype helper module (chartist.class.js) there is a fallback mechanism for the constructor functions so you can still call chart constructors as functions without the new keyword. The fallback mechanism will create a new object with the chart as prototype and delegate the constructor call. This way you can write var chart = new Chartist.Line(); but also var chart = Chartist.Line(); without any drawbacks. This provides the necessary backwards compatibility.