如何从Google脚本向嵌入式图表添加新数据(不是来自某个范围)

时间:2019-02-26 04:54:48

标签: google-apps-script

我有以下代码:

var topClickSourcesChart = new Chart('dashboard-click-source-chart', {
    type: 'bar',
    data: {
      labels: ["Number of users"],
      datasets: [{
        label: 'Facebook',
        data: [10],
        backgroundColor: '#4D90C3',
      },
      {
        label: 'Instagram',
        data: [15],
        backgroundColor: '#866DB2',
      },
      {
        label: 'Twitter',
        data: [7],
        backgroundColor: '#EA6F98',
      }],
    },
    options: {
        scales: {
            xAxes: [{
                display: false,
            }],
            yAxes: [{
            ticks: {
                beginAtZero: true
            }
        }]
        },
        legend: {
            position: 'right',
            labels: {
                boxWidth: 10,
            }
        }
    }
});

定义数据表然后从Google脚本中将其添加到嵌入式图表(带注释的代码)的正确方法是什么?

0 个答案:

没有答案