Hi,
Is it possible to add multiple Box primitives dynamically using the mouse events and fillsceneGraph event. Also, on mouse hover or click can I get the bounds of the selected box primitive.
Regards,
Uday
For your case you can add BoxAnnotations. For example:
{
annotation.Width = 50;
annotation.Height = 50;
annotation.Location.LocationX = e.X;
annotation.Location.LocationY = e.Y;
}
Also you can look at WinForms Chart samples - Chart Interaction - Dragging Annotation sample.