質問

I am having an issue with a pie chart I created in highcharts.

Depending on the placement of the data labels the actual chart will grow or shrink.

We need the pie chart to stay the same size so is there a way to keep the pie size constant and force the labels to fit around it or do I just have to place the labels inside each slice?

役に立ちましたか?

解決

You will have to set a fixed size for the pie chart. Can be a percentage or a pixel value. For example:

plotOptions: {
        pie: {
            size: 100
        }
    },

See this fiddle from the API http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/pie-size/

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top