shanemcd
shanemcd

Reputation: 578

Remove padding from HighCharts polar chart

Here is a JSFiddle of what I currently have:

http://jsfiddle.net/DGwcF/

I have set both the margin and spacing to 0, though the padding still remains around the chart itself.

How do I make the chart go all the way to the edge of the container? Thank you!

Upvotes: 1

Views: 328

Answers (1)

Sebastian Bochan
Sebastian Bochan

Reputation: 37588

You need to set pane's size as 100%, see this:

http://jsfiddle.net/DGwcF/3/

 pane:{
      size: '100%',
 }

Upvotes: 1

Related Questions