문제

I have a pie chart located:

http://jsfiddle.net/PcX4b/5/

I am setting the series to look something like:

 series: [{
            type: 'pie',
            name: name,
            size: '100%',
            innerSize: '25%',
            data: innerData,
             shadow: true,
            dataLabels: {
                enabled: false
            }
        }, {
            type: 'pie',
            name: "whiteBorder",
            size: '100%',
            innerSize: '93%',
            data: outerData,
                            shadow: false,
            dataLabels: {
                enabled: false
            }
        }]

Right now the shadow for the pie chart is displaying on the outside of the pie (desired) and the donut hole (not desired). Is it possible to have it display only on the outside with out putting it on the white border series.

도움이 되었습니까?

해결책

Just remove/set to 0 innerSize for a first series, see: http://jsfiddle.net/PcX4b/8/

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top