anka
anka

Reputation: 3857

How to remove empty space between bars in Highcharts polar chart?

Is it possible to remove the empty space between the bars within a Highcharts polar chart, so that it looks like a pie chart? I just want to fill up the whole 360 degrees of the chart without spaces between the "spikes".

Example: JSFiddle

Are there any options for the plot or series parameter?

plotOptions: {
    series: {
        stacking: 'normal',
        shadow: false,
        groupPadding: 0,
        pointPlacement: 'on'
    }
}

Upvotes: 2

Views: 753

Answers (1)

jmgross
jmgross

Reputation: 2346

You just have to add the pointPadding option :

    plotOptions: {
        series: {
            stacking: 'normal',
            shadow: false,
            groupPadding: 0,
            pointPadding: 0
        }
    }

http://jsfiddle.net/7pddwx6a/

Upvotes: 4

Related Questions