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.
Clickable Axis Title
-
- Advanced
- Posts: 192
- Joined: Thu Feb 01, 2007 12:00 am
- Contact:
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Mike,
Yes, that's right. I've added your request to our wish-list to be considered for inclusion in future releases.
Yes, that's right. I've added your request to our wish-list to be considered for inclusion in future releases.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Advanced
- Posts: 192
- Joined: Thu Feb 01, 2007 12:00 am
- Contact:
Any possibility of this feature being considered?
Have not heard anything on this in over a year. Any possibility this new feature will be considered, soon?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Mike,
Sorry if I didn't come up with this before but you can already do that doing something like this:
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";
}
}
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |