void DrawPolygon(ChartPane pane, Color color, Color fillColor, LineStyle style, int width, bool behindBars, params double[] coords);
The issue is the the ability to define color as alpha, r,g b ?
The use of alpha is pretty standard. I do see there is a brush property Opacity:
BrushProperties bp=new BrushProperties();
bp.Opacity=(float)0.4;
How does this opacity property relate to Color FromArgb method?

Comment