Я пытаюсь изменить свой xaxis. Я использую chart js -plugin-datasource , моя таблица данных Excel обновляет данные с верхней части листа вместо добавления. Вот почему мои диаграммы оглядываются назад.
type: 'line',
data: {
datasets: [{
yAxisID: 'temperatureH',
backgroundColor: 'transparent',
borderColor: "#ff0000",
pointBackgroundColor: "#ff0000",
tension: 0,
fill: false
}]
},
options: {
spanGaps: true,
legend: {
display: false,
},
tooltips: {
callbacks: {
label: function(tooltipItem) {
return tooltipItem.yLabel;
}
}
},
scales: {
xAxes: [{
display: false
},],
yAxes: [{
id: 'temperatureH',
gridLines: {
drawOnChartArea: true
},
scaleLabel: {
display: true,
labelString: 'Temp H (C)'
},ticks: {
max: 40,
min: 0,
stepSize: 2.5
}
}]
},
plugins: {
datasource: {
type: 'sheet',
url: '{{ book }}',
rowMapping: 'index',
datasetLabels: '{{ page }}'+'B1',
indexLabels: '{{ page }}'+'A2:A'+'{{ daysto}}',
data: '{{ page }}'+'{{ tempa }}'+'2:'+'{{ tempb }}'+'{{ daysto}}',
}
}
}
};