Sets the properties of the PieOtherSlice Legend.
public Legend Legend {get; set;}

Example

This sample shows how to use the PieOtherSlice Legend property:

// prepare "Other" to group values below 10
pie1.OtherSlice.Style=Steema.TeeChart.Styles.PieOtherStyles.BelowValue;
pie1.OtherSlice.Value=10;
pie1.OtherSlice.Text = "Other";
pie1.OtherSlice.Legend.Visible = true;
pie1.OtherSlice.Legend.CustomPosition = true;
pie1.OtherSlice.Legend.Left = 350;
pie1.OtherSlice.Legend.Top = 150;

Remarks


The Legend property controls a sub-legend filled with pie slices that belong to "Other" slice.

See Also

PieOtherSlice Class | PieOtherSlice Members | Steema.TeeChart.Styles Namespace