10112 : Is there a way to set the hour per day to a different value than 24?

…void buttonToggleHideTime_Click(object sender, System.EventArgs e)     {       timeHide=!timeHide;       if (timeHide)         dateScaler1.HideHours(new int[]{11,12,13});       else         dateScaler1.ShowHours(new int[]{0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23});     } For further info look up PlexityHide.GTP.DateScaler.HideDays and PlexityHide.GTP.DateScaler.HideHours… Continue reading

10097 : I would expect the TimeItems displaying in alternating colors, red and blue. But still they all get the same color?

…args)   {    if (j==2)    {     args.TimeItem.TimeItemLayout.Color=Color.LightBlue;     j=1;    }    else    {     args.TimeItem.TimeItemLayout.Color=Color.Red;     j=2;    }   }   After   ganttrow.Layers[0].TimeItemDataConnect().OnBeforeDSToTimeItem+=new TimeItemToDSEventHandler(TIDC_OnBeforeDSToTimeItem); in OnNodeInserted   I would expect the TimeItems displaying in alternating colors, red… Continue reading

10091 : GTP ASP.NET: How can I change the font color for the column header in the grid?

…      layout.VertAlign=StringAlignment.Center;       layout.Name=“layout”;       layout.HeaderBackgroundColor=SystemColors.Control;       layout.LineRight.Use=true;       layout.LineRight.Color=SystemColors.ControlDark;       layout.LineTop.Use=false;       layout.LineBottom.Use=false;       gantt1.Grid.CellLayouts.Add(layout); And reference it from a column:       GridColumn idcol=gantt1.Grid.Columns.AddNew(CellType.SingleText);          idcol.Title=“Id”;       idcol.LayoutName=“layoutrightjust”;       idcol.Width=20;  … Continue reading