Back to Devexpress

HierarchicalItemStyle.BorderColor Property

windowsforms-devexpress-dot-xtratreemap-dot-hierarchicalitemstyle-81130020.md

latest2.8 KB
Original Source

HierarchicalItemStyle.BorderColor Property

Gets or sets a sunburst item’s border color.

Namespace : DevExpress.XtraTreeMap

Assembly : DevExpress.XtraTreeMap.v25.2.dll

NuGet Package : DevExpress.TreeMap

Declaration

csharp
[XtraSerializableProperty]
public Color BorderColor { get; set; }
vb
<XtraSerializableProperty>
Public Property BorderColor As Color

Property Value

TypeDescription
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.

winforms-dashboard-custom-items-extension/CS/CustomItemExtension/CustomItems/SunburstChart/SunburstItemControlProvider.cs#L140

csharp
SkinElement element = currentSkin[ChartSkins.SkinBackground];
    sunburst.ItemStyle.BorderColor = currentSkin.TranslateColor(element.Color.BackColor);
}

winforms-dashboard-custom-items-extension/VB/CustomItemExtension/CustomItems/SunburstChart/SunburstItemControlProvider.vb#L154

vb
Dim element As SkinElement = currentSkin(ChartSkins.SkinBackground)
    sunburst.ItemStyle.BorderColor = currentSkin.TranslateColor(element.Color.BackColor)
End Sub

See Also

HierarchicalItemStyle Class

HierarchicalItemStyle Members

DevExpress.XtraTreeMap Namespace