Skip to main content
All docs
V23.2

DrawMapSegmentEventArgs.Stroke Property

Gets or sets the segment outline color.

Namespace: DevExpress.XtraMap

Assembly: DevExpress.XtraMap.v23.2.dll

NuGet Package: DevExpress.Win.Map

Declaration

public Color Stroke { get; set; }

Property Value

Type Description
Color

The segment outline color.

Remarks

The following code sets the outline color and width of odd MapPie segments:

private void mapControl1_DrawMapItem(object sender, DrawMapItemEventArgs e) {  
  if(e.Item is MapPie) {  
    DrawMapSegmentableItemEventArgs args = (DrawMapSegmentableItemEventArgs)e;  
    for(int i = 1; i < args.Segments.Length; i += 2){  
       args.Segments[i].StrokeWidth = 2;
       args.Segments[i].Stroke = Color.Red;  
    }
  }  
}  
See Also