windowsforms-devexpress-dot-xtratreemap-dot-hierarchicalitemstyle-81130020.md
Gets or sets a sunburst item’s border color.
Namespace : DevExpress.XtraTreeMap
Assembly : DevExpress.XtraTreeMap.v25.2.dll
NuGet Package : DevExpress.TreeMap
[XtraSerializableProperty]
public Color BorderColor { get; set; }
<XtraSerializableProperty>
Public Property BorderColor As Color
| Type | Description |
|---|---|
| Color |
The Color value that specifies an item border color.
|
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the BorderColor property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
SkinElement element = currentSkin[ChartSkins.SkinBackground];
sunburst.ItemStyle.BorderColor = currentSkin.TranslateColor(element.Color.BackColor);
}
Dim element As SkinElement = currentSkin(ChartSkins.SkinBackground)
sunburst.ItemStyle.BorderColor = currentSkin.TranslateColor(element.Color.BackColor)
End Sub
See Also