Full screen chart without a scroll slider in plotly

28 views Asked by At

How to make a full-width chart with a fixed chart height with no empty space on the sides and no horizontal scroll slider?

I have not been able to achieve this with autosize and autorange.

var layout = {
  autosize: true,
  height: 500,
  showlegend: false,
  xaxis: {
    autorange: true,
    range: [dates[0], dates[dates.length - 1]]
  }
}

enter image description here

0

There are 0 answers