Seems like a simple problem but I’m having trouble figuring out the solution to this. I want to create a polygon/areastyle where just the outline is shown, but the fill should be clear. So basically it would look like if I was just creating connected lines.
Edit: Here’s the constructor I’m currently using for making area styles:
public static AreaStyle CreateSimpleAreaStyle(GeoColor fillBrushColor, GeoColor outlinePenColor, int outlinePenWidth);
I thought I just had to set the fillBrushColor to GeoColor.StandardColors.Transparent, but that made the outline dissapear as well.