Highcharts使用带有排序数据的Google表格错误#15

时间:2017-10-16 12:35:18

标签: sorting highcharts

我在Google表格中有以下格式的数据:

Column A            Column B  Column C
10/16/2017 12:50:20 77        58
10/16/2017 13:50:21 81        64
10/16/2017 14:50:17 86        64

我的HighCharts代码非常简单:

Highcharts.chart('container',{
chart: {
  type: 'line'
},
title: {
  text: 'test'
},
data: {
  googleSpreadsheetKey: ' link to my google data',
  startColumn: 0,
  endColumn: 2,

},});

然而,当运行代码时,我得到一个图表,其日期从1970年开始到当前日期,其中Highcharts错误#15,即据称数据未被排序。

0 个答案:

没有答案