Мне нужно всегда показывать подсказки
Я пытался
Как всегда показывать всплывающие подсказки в Chart.js 2
Я хочу показать значение метки внутри круговой диаграммы. (vue-chartjs / pieceLabel)
и т.д.
import { Line } from 'vue-chartjs'
export default {
extends: Line,
props: {
linechartData: {
type: Array | Object,
required: true
},
linechartLabels: {
type: Array,
required: true
}
},
data () {
return {
options: {
title: {
display: true,
text: 'MONTHLY FEEDBACKS RECEIVED (LAST 12 MONTHS)'
},
scales: {
yAxes: [{
ticks: {
beginAtZero: true
},
gridLines: {
display: true
}
}],
xAxes: [{
gridLines: {
display: true
},
display: false
}]
},
legend: {
display: false
},
responsive: true,
maintainAspectRatio: false
}
}
},
mounted () {
this.renderChart({
labels: this.linechartLabels,
datasets: [{
borderColor: '#027be3',
pointBackgroundColor: 'rgb(38, 166, 154, 0.5)',
borderWidth: 1,
pointBorderColor: '#249EBF',
backgroundColor: 'rgb(38, 166, 154, 0.5)',
data: this.linechartData
}]
}, this.options)
}
}
Я ожидаю, что подсказка всегда будет отображаться по умолчанию