Releases: jtblin/angular-chart.js
Releases · jtblin/angular-chart.js
Version 0.10.2
- Support for angular
1.5.x
Version 0.10.1
- #366 - fix legend style due to Chart.js
1.1.1
changes (@davidfhaines)
Version 1.0.0-alpha4
- Use Chart.js 2.0.0 release
Version 0.10.0
- Upgrade to Chart.js
1.1.1
Version 1.0.0-alpha3
- #282 - Do not call
scope.$apply()
on mouse hover as it may trigger unexpected redraws - #311 - Add chartYAxes in scope directive for set chart axes ids when there are multiple y axes (@pane-e-design)
- #328 - Destroy chart when data is empty (@agaskell)
- Set point radius to 0 for smoother performance of ticks chart following fix of chartjs/Chart.js#2040
- #187 - Destroy old charts consistently if exists before creating new chart
- #301 - Avoid mutating
scope.colours
if possible as it could be triggering a refresh
Version 0.9.0
Version 1.0.0-alpha1
Compatibility with upcoming Chart.js 2.0
There are numerous breaking changes in this version notably:
- all options now need to use the
chart-
prefix chart-colours
is nowchart-colors
andchart-get-colour
is nowchart-get-color
- chart types are in
camelCase
e.g.line
andpolarArea
- legend is now a Chart.js option so the
chart-legend
attribute has been removed - events emitted on creation and update are now prefixed with
chart-
e.g.chart-create
- obviously all Chart.js breaking changes as well in how options are set, etc.
Version 0.8.9
- #301 - Avoid mutating
scope.colours
if possible as it could be triggering a refresh - Lock angular version to 1.4.x.
- Using explicit annotation and remove gulp-annotate
Version 0.8.8
Version 0.8.7
- Do not require Chart.js if already required (@uxtx)
- Fix test suite on Windows (@SuperGouge)