I have an error when I display my array with chartjs. its does not display my values in the graph but its does display them as a label.
var data = {
labels: [this.dataTime],
datasets: [{
label: 'Custom Label Name',
backgroundColor: gradient,
pointBackgroundColor: 'white',
borderWidth: 1,
borderColor: '#911215',
data: [this.dataPrice],
}]
};