ThinkGeo v12.2
Is it possible to create a line style that uses a hatch brush? I am using the following style and the line is displayed as solid with a color of Teal:
var lineStyle = new LineStyle();
lineStyle.InnerPen = new GeoPen()
{
Brush = new GeoHatchBrush(GeoHatchStyle.DashedVertical, GeoColors.OrangeRed, GeoColors.Yellow),
Color = GeoColors.Teal,
Width = 15.0F,
StartCap = DrawingLineCap.Square,
EndCap = DrawingLineCap.Square
};