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'
Bug Report
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
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.
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 |
Instructions - How to post in this forum |