无法放大Google图表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了无法放大Google图表相关的知识,希望对你有一定的参考价值。

我创建了一个谷歌图表,可视化我家的室外温度。数据量不断增长,因此图表在几天内变得难以理解;-)我希望能够放大x轴,但我无法使用explorer选项。我试过了:

explorer: { actions: ["dragToZoom", "rightClickToReset"], 
            maxZoomIn: 0.2,
            maxZoomOut: 1.0,
            zoomDelta: 10,
            axis: "horizontal",
            keepInBounds: true
          },

但这似乎不起作用。

这是我到目前为止所做的:https://codepen.io/wtrdk/pen/wpGVVWhttps://weather.wtrdk.nl/test.html

更新:我添加了以下代码来创建一个连续轴,但我仍然无法放大...

var view = new google.visualization.DataView(data);
  view.setColumns([
    // first column is calculated
    {
      calc: function (dt, row) {
        // convert string to date
        return new Date(dt.getValue(row, 0));
      },
      label: data.getColumnLabel(0),
      type: 'datetime'
    },
    // just use index # for second column
    1
     ]);

以上是关于无法放大Google图表的主要内容,如果未能解决你的问题,请参考以下文章

对话框片段中的 MP 图表

android google map supportmap片段无法在片段中初始化

每次我在前端放大/缩小时,如何以编程方式检查 Altair 图表的放大/缩小功能

将 Google 图表与 php/mysqli 一起使用 - 无法正常工作

Google图表栏水平移动注解位置到堆叠图表的中心

无法使用 MySQL 表数据作为数据源生成 Google 图表