Skip to content

Releases: adopted-ember-addons/ember-cli-chart

Community updates

12 Mar 16:34
Compare
Choose a tag to compare

Pull requests:

Thanks to the community for contributing :)

Chart update bugs

15 Aug 15:27
Compare
Choose a tag to compare
  • Bar chart redraws upon dataset change #30
  • Update legend when chart is updated #32

Updating chart bugs

17 Jun 11:43
Compare
Choose a tag to compare
  • Labels now update (#27)
  • Redraws Linear charts if dataset length changes (#19)

Support Glimmer

07 Jun 01:17
Compare
Choose a tag to compare
  • upgrade the addon to use the latest Ember-CLI V0.2.7 and EmberJS 1.12
  • fix observer related bug in EmberJS 1.13 (Glimmer) #18
  • fix a bug when using the legend=true option and parent element being <html> #21

Ember CLI 0.2.1 and Ember 1.10

28 Mar 15:22
Compare
Choose a tag to compare

This version of the addon upgrades to the latest ember-cli and ember-js. There are also automated tests added and a lot of refactoring of the code.

The addon can now be extended:

// your-app/components/ember-chart.js
import EmberChart from 'ember-cli-chart/components/ember-chart';

export default EmberChart.extend({
  // do whatever you want here to change functionality
});