Page 1 of 1
Clickable Axis Title
Posted: Fri Jan 18, 2008 10:15 pm
by 8739068
Is there a way to support a right click event on a chart axis title?
I would like to right click on title of an axis and pop up a custom menu. At firs glance the Axis Title does not seem to support click events.
Posted: Mon Jan 21, 2008 11:47 am
by narcis
Hi Mike,
Yes, that's right. I've added your request to our wish-list to be considered for inclusion in future releases.
Any possibility of this feature being considered?
Posted: Fri May 22, 2009 9:12 pm
by 8739068
Have not heard anything on this in over a year. Any possibility this new feature will be considered, soon?
Posted: Mon May 25, 2009 7:42 am
by narcis
Hi Mike,
Sorry if I didn't come up with this before but you can already do that doing something like this:
Code: Select all
void tChart1_ClickAxis(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Right)
{
tChart1.Header.Text = "axis right-clicked";
}
}