%PDF- %PDF-
Direktori : /home/ugotscom/bos_naturals/resources/js/components/ |
Current File : /home/ugotscom/bos_naturals/resources/js/components/properties_line_sales.vue |
<script> import { Line } from 'vue-chartjs' export default { extends: Line, data: () => ({ chartdata: { labels: ['January', 'February','March','April','May','June','July','August','Sept','Oct','Nov','Dec'], datasets: [ { label: 'PQR', backgroundColor: 'rgba(66, 141, 245)', data: [10, 20,42], fill: false, borderColor: 'rgba(66, 141, 245)', tension: 0.1 }, { label: 'SDR', backgroundColor: 'rgba(255, 56, 96)', data: [10, 5,2,20], fill: false, borderColor: 'rgba(255, 56, 96)', tension: 0.1 } ] }, options: { responsive: true, maintainAspectRatio: false } }), mounted () { this.renderChart(this.chartdata, this.options) } } </script>