10912 : I am using the ASP component and I would like to hide both the pan and zoom controls in the Gantt component.

…the pan and zoom controls in the Gantt component. Is this possible and if so how? Answer Yes we look at these properties Gantt_ASP.Gantt.DateScaler.ScrollButtonsVisible and Gantt_ASP.RescalingButtonsVisible Just set them to false…… Continue reading

10887 : I want to change the alignment of the vertical scroll to the left…

…this further you can put the scrollbar outside the gantt like this:       Panel aPanel=new Panel();       aPanel.Parent=gantt1.Parent;       aPanel.Top = gantt1.Top + gantt1.DateScalerHeight;       aPanel.Left=gantt1.Right+1;       aPanel.Height=gantt1.TimeItemArea.Height;       aPanel.Width=gantt1.Grid.ScrollbarNodes.Width;… Continue reading

10704 : How can I print only selected pages from a GTP.NET gantt?

…really very flexible. Let me show you this:    PreviewPrintController y=new System.Drawing.Printing.PreviewPrintController();    y.UseAntiAlias=true;    printDocument.PrintController=y;    printDocument.Print();    PreviewPageInfo[] aPreviewPageInfoList=y.GetPreviewPageInfo();    aPreviewPageInfoList[5-1].Image  <— The image(EMF) of page 5…     … Continue reading

11060 : The Datescaler is showing Month–>Date resloution.in two steps. But I want to make it into 3 Steps, i.e. Month–>Week—>Date resloution.

Question The Datescaler is showing Month–>Date resloution.in two steps. But I want to make it into 3 Steps, i.e. Month–>Week—>Date resloution Answer Currently the DateScaler does not have built in… Continue reading

11039 : How to get the snapped time values in the Gantt1_OnTimeItem_StopValueResize event?

…snapping is calculated after the OnTimeItem_StopValueResize event, but you can use the same logic we do to calculate the snapped value: Gantt.DateScaler.SnapTime(time,precision).   So try this: TimeBeforeSnap=e.TimeItem.Stop.Add(e.Diff); TimeAfterSnap=Gantt1.DateScaler.SnapTime(TimeBeforeSnap,e.TimeItem.TimeItemLayout.SnapStopTime);    … Continue reading