10070 : Can you change the format of the date on the date scaler?

…this.gantt1.DateScaler.UseDayNumbersNotWeeks=false;       this.gantt1.DateScaler.ShowWeekNumbers=false; void DateScaler_OnDateScalerDrawString(DateScaler dateScaler, DateScalerDrawStringEventArgs e)     {         if((e.LongIntervall&&e.Resolution==NonLinearTime.TimeResolution.days)&&(!this.gantt1.DateScaler.UseDayNumbersNotWeeks))         {             e.OutputText=e.DateTime.ToString(“dd.MM”)+” – “+e.DateTime.AddDays(6).ToString(“dd.MM”);             e.ContinueDraw=true;         }     } Supports answer: The answer to this… Continue reading

10122 : tooltips on grid rows

…Cell cell=gantt1.Grid.GridStructure.CellFromXY(e.X,e.Y);       string tooltiptext=””;       if (cell!=null)       {         if (cell.Node.UserReference is string)         {           tooltiptext=cell.Node.UserReference as string;         }       }       toolTip1.SetToolTip(gantt1.Grid,tooltiptext);     }  … Continue reading