cosmos-explorer/src/views/ChartjsComponentBar.vue

32 lines
540 B
Vue
Raw Normal View History

2021-10-07 13:25:33 +00:00
<script>
import { Bar, mixins } from 'vue-chartjs'
export default {
extends: Bar,
mixins: [mixins.reactiveProp],
props: {
2021-10-09 08:35:08 +00:00
options: {
type: Object,
default: null,
},
2021-10-07 13:25:33 +00:00
},
data() {
return {
2021-10-09 08:35:08 +00:00
// options: {
// plugins: {
// legend: {
// display: false,
// labels: {
// color: 'rgb(255, 99, 132)',
// },
// },
// },
// },
2021-10-07 13:25:33 +00:00
}
},
mounted() {
this.renderChart(this.chartData, this.options)
},
}
</script>