Disha
Disha

Reputation: 832

How to avoid horizontal scrollbar in highcharts

I am redering a highchart in a container. I want this chart to fit in container and to not to show any scroll. But it gives me a horizontal scroll with no/ or very little space to scroll.

  <div id="container" style="min-width: 600px; height: 400px; margin: 0 auto"     align="right"></div>

Somthing similar to - fiddle And also when I try to debug using f12 , scroll disappears.

How can I avoid this?

Upvotes: 2

Views: 1557

Answers (2)

lalala
lalala

Reputation: 1201

You must change it

scrollbar: {
    enabled: false
},

Upvotes: 2

Mohammad Razeghi
Mohammad Razeghi

Reputation: 1594

add

scrollbar: {
        enabled: false
},

to your xAxis attribute of chart when initializing in javascript.

Upvotes: 5

Related Questions