Page 1 of 1

Bug Report

Posted: Wed Feb 04, 2009 3:50 pm
by 13051613
Hello,

I don't know if this is a bug...

In teechart for visual studio 2008 .net v3 when i add the gantt tool and i move the mouse over a gantt bar, there is a change of the cursor style. This is ok.

But, when i do the same thing whith the checkbox 'Allow resize' desactivated on the gantt tool, the cursor style don't get back to 'default style' after i move the mouse over a gantt bar.

-----------------------------------------------------------------------------------

Hola,

No se si serà un bug...

A la versió 3 del teechart for visual studio 2008 .net he vist que quan actives la gantt tool i pases per sobre d'una barra et canvía el cursor i quan deixes de pasar per sobre el cursor torna al 'default style'.

Però quan desactives l'opció 'Allow Resize' de la gantt tool i pases per sobre d'una barra del gantt el cursor es manté sempre igual (amb la mà) i no torna mai al 'default style'

Posted: Thu Feb 05, 2009 8:39 am
by narcis
Hi Pujol1986,

Yes, I think this is a bug which can be reproduce using code below. I've added it to the defect list (TF02013830) to be fixed for future releases.

----------------------------------------------------

Sí, crec que és un bug. Es pot reproduir fàcilment amb el codi de sota. L'he posat a la llista de defectes (TF02013830) per arreglar-lo per properes versions.

Code: Select all

		public Form1()
		{
			InitializeComponent();
			InitializeChart();
		}

		private void InitializeChart()
		{
			tChart1.Legend.Visible = false;

			Steema.TeeChart.Styles.Gantt gantt1 = new Steema.TeeChart.Styles.Gantt(tChart1.Chart);
			gantt1.FillSampleValues();

			Steema.TeeChart.Tools.GanttTool ganttTool1 = new Steema.TeeChart.Tools.GanttTool(tChart1.Chart);
			ganttTool1.Series = gantt1;
			ganttTool1.AllowResize = false;
		}