106 lines
2.4 KiB
Vue
106 lines
2.4 KiB
Vue
<script>
|
|
import { Line } from 'vue-chartjs'
|
|
import { CustomTooltips } from '@coreui/coreui-plugin-chartjs-custom-tooltips'
|
|
import { generatedLabels, generatedBackgroundColor, generatedBorderColor, generatedPointHoverBackgroundColor, generatedOptions } from '@/mixins/charts/chartMixins'
|
|
|
|
export default {
|
|
name: 'LineChart2',
|
|
extends: Line,
|
|
mixins: [generatedLabels, generatedBackgroundColor, generatedBorderColor, generatedPointHoverBackgroundColor, generatedOptions],
|
|
props: {
|
|
data: {
|
|
type: Array,
|
|
default: () => [0, 22, 34, 46, 58, 70, 46, 23, 45, 78, 34, 12]
|
|
},
|
|
height: {
|
|
type: Number,
|
|
default: 40
|
|
},
|
|
label:{
|
|
type: String,
|
|
default: 'label|string'
|
|
},
|
|
borderColor:{
|
|
type: String,
|
|
default: 'rgba(255,255,255,.55)'
|
|
},
|
|
labels: Array,
|
|
backgroundColor:{
|
|
type: String,
|
|
default: 'transparent'
|
|
},
|
|
pointHoverBackgroundColor:{
|
|
type: String,
|
|
default: 'transparent'
|
|
},
|
|
options:Object,
|
|
},
|
|
computed:{
|
|
finalOptions () {
|
|
return{
|
|
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, this.data) - 5,
|
|
max: Math.max.apply(Math, this.data) + 5
|
|
}
|
|
}
|
|
]
|
|
},
|
|
elements: {
|
|
line: {
|
|
borderWidth: 1
|
|
},
|
|
point: {
|
|
radius: 4,
|
|
hitRadius: 10,
|
|
hoverRadius: 4
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
mounted () {
|
|
const datasets1 = [
|
|
{
|
|
label: this.label,
|
|
borderColor: this.generatedBorderColor,
|
|
backgroundColor: this.generatedBackgroundColor,
|
|
pointHoverBackgroundColor: this.generatedPointHoverBackgroundColor,
|
|
data: this.data
|
|
}
|
|
]
|
|
this.renderChart(
|
|
{
|
|
labels: this.generatedLabels,
|
|
datasets: datasets1
|
|
},
|
|
this.generatedOptions
|
|
)
|
|
}
|
|
}
|
|
</script>
|