[Enhancement] Move chart options to a variable (#189)
This commit is contained in:
committed by
Pranav Raj S
parent
17bb50c977
commit
5a41f321c8
@@ -3,11 +3,7 @@ import { Bar } from 'vue-chartjs';
|
|||||||
const fontFamily =
|
const fontFamily =
|
||||||
'-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif';
|
'-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif';
|
||||||
|
|
||||||
export default {
|
const chartOptions = {
|
||||||
extends: Bar,
|
|
||||||
props: ['collection'],
|
|
||||||
mounted() {
|
|
||||||
this.renderChart(this.collection, {
|
|
||||||
responsive: true,
|
responsive: true,
|
||||||
maintainAspectRatio: false,
|
maintainAspectRatio: false,
|
||||||
legend: {
|
legend: {
|
||||||
@@ -38,6 +34,12 @@ export default {
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
});
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
|
extends: Bar,
|
||||||
|
props: ['collection'],
|
||||||
|
mounted() {
|
||||||
|
this.renderChart(this.collection, chartOptions);
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user