Skip to main content
A newer version of this page is available. .

SunburstCenterLabel.ForegroundColor Property

Gets or sets the center label’s foreground color.

Namespace: DevExpress.XtraTreeMap

Assembly: DevExpress.XtraTreeMap.v18.2.dll

Declaration

public Color ForegroundColor { get; set; }

Property Value

Type Description
Color

A Color value that specifies the foreground color.

Example

This example shows how to specify a sunburst’s center label text and appearance.

Use the SunburstControl.CenterLabel property to access to a sunburst’s center label settings.

sunburstControl.CenterLabel.TextPattern = "Total: ${TV : F2}";
sunburstControl.CenterLabel.TextFont = new Font("Tahoma",10);
sunburstControl.CenterLabel.ForegroundColor = Color.Black;
sunburstControl.CenterLabel.BackgroundColor = Color.White;
See Also