Closed
Description
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.