Reputation: 109
How can I make a Point semi-transparent in a Visual Studio Point Chart? I have many points close to each other, so I can't see if there are more than one at the same place. If they would be semi transparent multiple points at the same place should appear darker than a single point.
Upvotes: 0
Views: 190
Reputation: 29471
You can set the color of the point using public static Color FromArgb( int alpha, int red, int green, int blue)
with a value of 128 to alpha
to get a semi transparent point.
Upvotes: 1