Hi. I have a trackball setup on a chart.
I have a click handler that toggles the trackball.
When I disable the trackball it leaves its message box on the screen... If I toggle the trackball a bunch of times, I end up with a bunch of message boxes on the screen...
See the pix for a sample.
Thoughts? -
Thanks
chart.Controllers.Add(new ChartTrackballController());
chart.ShowTrackBall = false;
I have a click handler that toggles the trackball.
private void chart_MouseClick(object sender, MouseEventArgs e)
{
if (e.Button == System.Windows.Forms.MouseButtons.Right)
{
chart.ShowTrackBall = !chart.ShowTrackBall;
}
}
When I disable the trackball it leaves its message box on the screen... If I toggle the trackball a bunch of times, I end up with a bunch of message boxes on the screen...
See the pix for a sample.
Thoughts? -
Thanks