Hi,
i have an e.x and e.y coordinates from a mouse up event. how can i make sure the bubble contains this point? (mouse up was in bubble range)
does bubble contains point?
Hi idan,
I think that clicked method is what you are looking for:
I think that clicked method is what you are looking for:
Code: Select all
void tChart1_MouseUp(object sender, MouseEventArgs e)
{
Text = bubble1.Clicked(e.X,e.Y) != -1 ? "Bubble!" : "";
}
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |