Hi,
I am working with clickable axes, and check on the number of mouse clicks, but the events always returns with 1 mouse click.
The code looks like:
private void tChart1_ClickAxis(object sender, System.Windows.Forms.MouseEventArgs e)
{
int noClicks = e.Clicks; <-- always returns 1 mouse click ??
Any idea what might be wrong ..
Many thanks in advance.
Best regards,
Antoon Koster
Netherlands
Clickable axes
Hi Antoon,
it works fine here using the latest Build available and the following code :
it works fine here using the latest Build available and the following code :
Code: Select all
private void tChart2_ClickAxis(object sender, System.Windows.Forms.MouseEventArgs e)
{
int c = e.Clicks;
label1.Text = c.ToString();
}
Pep Jorge
http://support.steema.com
http://support.steema.com