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