Диаграмма js обратная ось с использованием диаграммы js источник данных плагина - PullRequest
0 голосов
/ 31 марта 2020

Я пытаюсь изменить свой 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}}',
                } 
                }
              }
        };

screenshot of my chart

sample of my excel sheet

...