You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the range of a plot with a rangeslider is changed using Plotly.relayout(gd, {'xaxis.range': [3,9]}); or Plotly.relayout(gd, 'xaxis.range', [3,9]);, the rangeslider doesn't update to reflect the changed range.
However, when using Plotly.relayout(gd, {'xaxis.range[0]': 3, 'xaxis.range[1]': 9});, both the main plot and the rangeslider get updated correctly.