sliced

Specifies whether the point sector from a Pie or Donut series should be rendered as sliced (away from the center). Possible values are true and false (default):

dataSeries: [{
    seriesType: "pie",
    data: [
        ["Firefox", 44.2],
        ["IE7", 26.6],
        { collectionAlias: "IE6", y: 20, sliced: true },
        ["Chrome", 3.1],
        ["Other", 5.4]
    ]
}]

Note: For Pie and Donut series types only.

This setting is demonstrated in the following example.