[Enhancement] Move chart options to a variable (#189)

This commit is contained in:
Moisés Ñañez 2019-10-28 10:30:02 -05:00 committed by Pranav Raj S
parent 17bb50c977
commit 5a41f321c8

View file

@ -3,41 +3,43 @@ import { Bar } from 'vue-chartjs';
const fontFamily =
'-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif';
const chartOptions = {
responsive: true,
maintainAspectRatio: false,
legend: {
labels: {
fontFamily,
},
},
scales: {
xAxes: [
{
barPercentage: 1.9,
ticks: {
fontFamily,
},
gridLines: {
display: false,
},
},
],
yAxes: [
{
ticks: {
fontFamily,
},
gridLines: {
display: false,
},
},
],
},
};
export default {
extends: Bar,
props: ['collection'],
mounted() {
this.renderChart(this.collection, {
responsive: true,
maintainAspectRatio: false,
legend: {
labels: {
fontFamily,
},
},
scales: {
xAxes: [
{
barPercentage: 1.9,
ticks: {
fontFamily,
},
gridLines: {
display: false,
},
},
],
yAxes: [
{
ticks: {
fontFamily,
},
gridLines: {
display: false,
},
},
],
},
});
this.renderChart(this.collection, chartOptions);
},
};