Bug Report

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Pujol1986
Newbie
Newbie
Posts: 58
Joined: Thu Jan 29, 2009 12:00 am
Location: Barcelona
Contact:

Bug Report

Post by Pujol1986 » Wed Feb 04, 2009 3:50 pm

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'

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Thu Feb 05, 2009 8:39 am

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;
		}
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply