Occurs when the control is double-clicked.
public MouseEventHandler  DblClick

Remarks


An DblClick event occurs whenever the user double clicks onto a Chart. The Sender parameter specifies the Chart component that originated the event.

Example


[C#]

private void Form1_DoubleClick(object sender, System.EventArgs e) 
{
     ((Steema.TeeChart.TChart)sender).Enabled = true;
     MessageBox.Show("You've double-clicked the Chart!!");
}

See Also

Series Class | Series Members | Steema.TeeChart.Styles Namespace