当我收到新值时如何进行自动缩放

How can i do autozoom when i receive new values

我有一个带有条形图的组件,但我有一个套接字可以接收此条形图的新值。如果值从 19 变为 200,我必须双击以重置缩放。是否有自动执行此操作的配置?

我的剧情配置是:

layout: {
      autosize: true,
      xaxis: {
        title: bottomText,
        autorange: true
      },
      yaxis: {
        title: leftText,
        autorange: true
      },
      dragmode: 'zoom',
      hovermode: 'closest',
      margin: {
        t:20,
        b: 150
      },
      transition: {
        duration: 500,
        easing: 'cubic-in-out'
      }
    },
  data: [{
      x: details.index,
      y: details.fw,
      type: 'bar'
    }],
  config: {
      displaylogo: false,
      locale: 'es',
    }

更新图表时,您可以通过为 layout.uirevision 分配新值来重置缩放。参见 https://plot.ly/javascript/uirevision/#reset-user-changes