Is it possible to draw a filled polygon area (more than 4 points) on top of the grid.
Points inside the area is of special interest.
Regards Brian
1 Answer, 1 is accepted
0
George
Telerik team
answered on 21 Jan 2014, 09:50 AM
Hi Brian,
Thank you for contacting us.
You can draw whatever you like on top of RadGridView. As every other control, it has a Paint event which can be used for additional drawings. For example, here is how to draw an ellipse:
void grid_Paint(object sender, PaintEventArgs e)
{
e.Graphics.DrawEllipse(Pens.Aqua, grid.Bounds);
}
I hope this helps.
Regards,
George
Telerik
TRY TELERIK'S NEWEST PRODUCT - EQATEC APPLICATION ANALYTICS for WINFORMS.
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely. Sign up for Free application insights >>