Mouse Cursor on chart does not change to Arrow 3.5.3274.3066
Posted: Tue May 26, 2009 5:11 pm
Hi There,
When DragMarks are set to a Line series the mouse cursor does not change back to Arrow after moving the mouse away from any tool (Vertical Chart Cursor, Hand Cursor on the Drag Marks)
Best Regards
Srinivas Avancha.
When DragMarks are set to a Line series the mouse cursor does not change back to Arrow after moving the mouse away from any tool (Vertical Chart Cursor, Hand Cursor on the Drag Marks)
Best Regards
Srinivas Avancha.
Code: Select all
private void Form1_Load(object sender, EventArgs e)
{
Steema.TeeChart.TChart tChart1 = new Steema.TeeChart.TChart();
Steema.TeeChart.Styles.FastLine fastLine1 = new Steema.TeeChart.Styles.FastLine();
Steema.TeeChart.Tools.CursorTool cursorTool1 = new Steema.TeeChart.Tools.CursorTool();
Steema.TeeChart.Styles.Line line1 = new Steema.TeeChart.Styles.Line();
this.Controls.Add(tChart1);
tChart1.Dock = DockStyle.Fill;
tChart1.Aspect.View3D = false;
cursorTool1.Style = Steema.TeeChart.Tools.CursorToolStyles.Vertical;
tChart1.Tools.Add(cursorTool1);
fastLine1.FillSampleValues(20);
line1.FillSampleValues(2);
tChart1.Series.Add(fastLine1);
tChart1.Series.Add(line1);
line1.LinePen.Width = 3;
Steema.TeeChart.Tools.DragMarks tempDragMarks = new Steema.TeeChart.Tools.DragMarks(tChart1.Chart);
tempDragMarks.Series = line1;
line1.Marks.Visible = true;
}