This is a migrated thread and some comments may be shown as answers.

Scatter Plot - Filled Polygon Area

1 Answer 58 Views
ChartView
This is a migrated thread and some comments may be shown as answers.
Brian
Top achievements
Rank 1
Brian asked on 16 Jan 2014, 10:10 AM
Hi,

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

Sort by
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 >>
Tags
ChartView
Asked by
Brian
Top achievements
Rank 1
Answers by
George
Telerik team
Share this question
or