10820 : How to use the OnPreCursorChangeEvent to change the cursor…..

…based on the Gantt.MouseMoveKind value       gantt1.TimeItemArea.OnPreCursorChangeEvent += new PreCursorChangeEvent(TimeItemArea_OnPreCursorChangeEvent);         void TimeItemArea_OnPreCursorChangeEvent(OffscreenDraw aOffscreenDraw, PreCursorChangeEventArgs e)     {       if (gantt1.MouseMoveKind==MouseMoveKind.resizee)       {         e.Cursor=Cursors.Cross;       }     }… Continue reading

10667 : Is it possible to have different font color for Header and the cell?

…Font(FontFamily.GenericSerif,14,FontStyle.Bold); Gantt_ASP_Vendor.Gantt.Grid.CellLayouts.Add(cl); // When using Gantt_ASP it is even more important to add the cellLayout to this collection, or else it will not we added to the css Gantt_ASP_Vendor.Gantt.Grid.Columns[0].ColumnCell.Layout=Gantt_ASP_Vendor.Gantt.Grid.CellLayouts.GetFromName( “ABoldCellLayout”);… Continue reading