10098 : When connected to a database: how can I change the color of different TimeItems individually?

…if ((e.GTPObject as TimeItem).TimeItemTexts.Count==0)       {         TimeItemText tit=new TimeItemText();         tit.Text = (string) (e.CurrencyManagerListItem as DataRowView)[“Text”];          tit.TimeItemTextLayout=gantt1.TimeItemTextLayouts.GetFromName(“default”);         (e.GTPObject as TimeItem).TimeItemTexts.Add(tit);         (e.GTPObject as TimeItem).TimeItemLayout=gantt1.TimeItemLayouts.GetFromName(“default”);         tit=new TimeItemText();… Continue reading