73 lines
1.7 KiB
Vue
73 lines
1.7 KiB
Vue
<script>
|
|
import { Line } from 'vue-chartjs'
|
|
import { CustomTooltips } from '@coreui/coreui-plugin-chartjs-custom-tooltips'
|
|
import { getStyle } from '@coreui/coreui/dist/js/coreui-utilities'
|
|
|
|
export default {
|
|
extends: Line,
|
|
props: ['height', 'width'],
|
|
mounted () {
|
|
const brandPrimary = getStyle('--primary') || '#20a8d8'
|
|
const datasets1 = [
|
|
{
|
|
label: 'My First dataset',
|
|
backgroundColor: brandPrimary,
|
|
borderColor: 'rgba(255,255,255,.55)',
|
|
data: [65, 59, 84, 84, 51, 55, 40]
|
|
}
|
|
]
|
|
|
|
this.renderChart(
|
|
{
|
|
labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
|
|
datasets: datasets1
|
|
},
|
|
{
|
|
tooltips: {
|
|
enabled: false,
|
|
custom: CustomTooltips
|
|
},
|
|
maintainAspectRatio: false,
|
|
legend: {
|
|
display: false
|
|
},
|
|
scales: {
|
|
xAxes: [
|
|
{
|
|
gridLines: {
|
|
color: 'transparent',
|
|
zeroLineColor: 'transparent'
|
|
},
|
|
ticks: {
|
|
fontSize: 2,
|
|
fontColor: 'transparent'
|
|
}
|
|
}
|
|
],
|
|
yAxes: [
|
|
{
|
|
display: false,
|
|
ticks: {
|
|
display: false,
|
|
min: Math.min.apply(Math, datasets1[0].data) - 5,
|
|
max: Math.max.apply(Math, datasets1[0].data) + 5
|
|
}
|
|
}
|
|
]
|
|
},
|
|
elements: {
|
|
line: {
|
|
borderWidth: 1
|
|
},
|
|
point: {
|
|
radius: 4,
|
|
hitRadius: 10,
|
|
hoverRadius: 4
|
|
}
|
|
}
|
|
}
|
|
)
|
|
}
|
|
}
|
|
</script>
|