mirror of
https://github.com/KevinMidboe/vue-chartjs.git
synced 2025-10-29 18:00:20 +00:00
* Remove Vue dependency and change extends Signed-off-by: Jakub Juszczak <netghost03@gmail.com> * 💎 Release new version 3.0.0-rc0 * ⬆️ Update examples * 📝 Update README.md * ⬆️ Update examples * ⬆️ Update englishd docs * ⬆️ Update transalted docs with current code examples * 🔥 Remove dist files from gitignore * ⬆️ Update dependencies vue and chartjs * Change private data Implements #182. The private chart instance is now in the vue.js data model. And can be accessed over `this.$data._chart` Updated unit tests * 📝 Update docs with private data * ✨ Add codeclimate ignore * ⬆️ Update codeclimate * ⬆️ Update codeclimate * ⬆️ Update codeclimate Add build and config folders to ignore
86 lines
1.5 KiB
JavaScript
86 lines
1.5 KiB
JavaScript
import Chart from 'chart.js'
|
|
import { mergeOptions } from '../helpers/options'
|
|
|
|
export default {
|
|
render: function (createElement) {
|
|
return createElement(
|
|
'div', {
|
|
style: this.styles,
|
|
class: this.cssClasses
|
|
},
|
|
[
|
|
createElement(
|
|
'canvas', {
|
|
attrs: {
|
|
id: this.chartId,
|
|
width: this.width,
|
|
height: this.height
|
|
},
|
|
ref: 'canvas'
|
|
}
|
|
)
|
|
]
|
|
)
|
|
},
|
|
|
|
props: {
|
|
chartId: {
|
|
default: 'scatter-chart',
|
|
type: String
|
|
},
|
|
width: {
|
|
default: 400,
|
|
type: Number
|
|
},
|
|
height: {
|
|
default: 400,
|
|
type: Number
|
|
},
|
|
cssClasses: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
styles: {
|
|
type: Object
|
|
}
|
|
},
|
|
|
|
data () {
|
|
return {
|
|
_chart: null,
|
|
defaultOptions: {
|
|
scales: {
|
|
xAxes: [{
|
|
type: 'linear',
|
|
position: 'bottom'
|
|
}]
|
|
}
|
|
},
|
|
plugins: []
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
addPlugin (plugin) {
|
|
this.plugins.push(plugin)
|
|
},
|
|
renderChart (data, options) {
|
|
let chartOptions = mergeOptions(this.defaultOptions, options)
|
|
|
|
this.$data._chart = new Chart(
|
|
this.$refs.canvas.getContext('2d'), {
|
|
type: 'scatter',
|
|
data: data,
|
|
options: chartOptions,
|
|
plugins: this.plugins
|
|
}
|
|
)
|
|
}
|
|
},
|
|
beforeDestroy () {
|
|
if (this.$data._chart) {
|
|
this.$data._chart.destroy()
|
|
}
|
|
}
|
|
}
|