vue-chartjs
Advanced tools
Comparing version 2.3.5 to 2.3.6
@@ -5,6 +5,26 @@ # Change Log | ||
[Full Changelog](https://github.com/apertureless/vue-chartjs/compare/v2.3.3...HEAD) | ||
[Full Changelog](https://github.com/apertureless/vue-chartjs/compare/v2.3.5...HEAD) | ||
**Fixed bugs:** | ||
**Closed issues:** | ||
- barchart 如何横向显示条形图 [\#37](https://github.com/apertureless/vue-chartjs/issues/37) | ||
## [v2.3.5](https://github.com/apertureless/vue-chartjs/tree/v2.3.5) (2017-02-14) | ||
[Full Changelog](https://github.com/apertureless/vue-chartjs/compare/v2.3.4...v2.3.5) | ||
**Closed issues:** | ||
- Destory chart instance in reactiveMixins on render [\#35](https://github.com/apertureless/vue-chartjs/issues/35) | ||
- Rerendering doughtnut chart not working [\#33](https://github.com/apertureless/vue-chartjs/issues/33) | ||
**Merged pull requests:** | ||
- 🔨 Change reactiveMixins to fix \#35 [\#36](https://github.com/apertureless/vue-chartjs/pull/36) ([apertureless](https://github.com/apertureless)) | ||
## [v2.3.4](https://github.com/apertureless/vue-chartjs/tree/v2.3.4) (2017-02-11) | ||
[Full Changelog](https://github.com/apertureless/vue-chartjs/compare/v2.3.3...v2.3.4) | ||
**Closed issues:** | ||
- Update Chart.js docs to include link to vue-chartjs [\#32](https://github.com/apertureless/vue-chartjs/issues/32) | ||
- Compatibility with Vue 2.1.10 [\#30](https://github.com/apertureless/vue-chartjs/issues/30) | ||
@@ -28,3 +48,3 @@ | ||
**Implemented enhancements:** | ||
**Closed issues:** | ||
@@ -41,9 +61,6 @@ - Content Security Policy [\#22](https://github.com/apertureless/vue-chartjs/issues/22) | ||
**Fixed bugs:** | ||
- Issues after using gulp-- production [\#19](https://github.com/apertureless/vue-chartjs/issues/19) | ||
**Closed issues:** | ||
- Error in rendering [\#21](https://github.com/apertureless/vue-chartjs/issues/21) | ||
- Issues after using gulp-- production [\#19](https://github.com/apertureless/vue-chartjs/issues/19) | ||
@@ -65,4 +82,5 @@ **Merged pull requests:** | ||
**Fixed bugs:** | ||
**Closed issues:** | ||
- Chart height definition inside the component [\#18](https://github.com/apertureless/vue-chartjs/issues/18) | ||
- Uncaught TypeError: Cannot read property 'draw' of null [\#15](https://github.com/apertureless/vue-chartjs/issues/15) | ||
@@ -79,2 +97,3 @@ | ||
- The page is blank? [\#13](https://github.com/apertureless/vue-chartjs/issues/13) | ||
- question:syntax with vue-loader [\#12](https://github.com/apertureless/vue-chartjs/issues/12) | ||
@@ -97,10 +116,7 @@ - Rerender when data has changed [\#10](https://github.com/apertureless/vue-chartjs/issues/10) | ||
**Implemented enhancements:** | ||
**Closed issues:** | ||
- Passing chart size \(width / height\) as prop doesnt resize the chart [\#8](https://github.com/apertureless/vue-chartjs/issues/8) | ||
- Add test [\#1](https://github.com/apertureless/vue-chartjs/issues/1) | ||
**Fixed bugs:** | ||
- Passing chart size \(width / height\) as prop doesnt resize the chart [\#8](https://github.com/apertureless/vue-chartjs/issues/8) | ||
**Merged pull requests:** | ||
@@ -113,3 +129,3 @@ | ||
**Implemented enhancements:** | ||
**Closed issues:** | ||
@@ -124,3 +140,3 @@ - Change name of the render method to ensure compatiblity with Vue 2.0 [\#4](https://github.com/apertureless/vue-chartjs/issues/4) | ||
**Implemented enhancements:** | ||
**Closed issues:** | ||
@@ -136,5 +152,8 @@ - Use Vue.util.mergeOptions to merge default options with user's options [\#5](https://github.com/apertureless/vue-chartjs/issues/5) | ||
**Implemented enhancements:** | ||
**Closed issues:** | ||
- Publish on NPM [\#2](https://github.com/apertureless/vue-chartjs/issues/2) | ||
**Merged pull requests:** | ||
- Properly destroy chartjs objects [\#3](https://github.com/apertureless/vue-chartjs/pull/3) ([LinusBorg](https://github.com/LinusBorg)) | ||
@@ -141,0 +160,0 @@ |
{ | ||
"name": "vue-chartjs", | ||
"version": "2.3.5", | ||
"version": "2.3.6", | ||
"description": "vue.js wrapper for chart.js", | ||
@@ -5,0 +5,0 @@ "author": "Jakub Juszczak <jakub@nextindex.de>", |
@@ -22,3 +22,3 @@ <div align="center"> | ||
- v1 later | ||
- v1 later `@legacy` | ||
- Vue.js 1.x | ||
@@ -29,3 +29,3 @@ - v2 later | ||
After the final release of vue.js 2, you also get the v2 per default if you install vue-chartjs over npm. | ||
No need for the @next tag anymore. If you want the v1 you need to define the version. | ||
No need for the @next tag anymore. If you want the v1 you need to define the version or use the legacy tag. | ||
If you're looking for v1 check this [branch](https://github.com/apertureless/vue-chartjs/tree/release/1.1.3) | ||
@@ -32,0 +32,0 @@ |
import BarChart from '../BaseCharts/Bar' | ||
import reactiveData from '../mixins/reactiveProp' | ||
import reactiveProp from '../mixins/reactiveProp' | ||
export default BarChart.extend({ | ||
mixins: [reactiveData], | ||
mixins: [reactiveProp], | ||
@@ -7,0 +7,0 @@ mounted () { |
@@ -29,3 +29,3 @@ module.exports = { | ||
newData.datasets.forEach((dataset, i) => { | ||
chart.data.datasets[i].data = dataset.data | ||
chart.data.datasets[i] = dataset | ||
}) | ||
@@ -32,0 +32,0 @@ |
@@ -30,3 +30,3 @@ module.exports = { | ||
newData.datasets.forEach((dataset, i) => { | ||
chart.data.datasets[i].data = dataset.data | ||
chart.data.datasets[i] = dataset | ||
}) | ||
@@ -33,0 +33,0 @@ |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
9462734