I am adding an item to a Gantt chart with the AddGanttColor method.
eg: nGantt := PlanGantt.AddGanttColor(dStartTime,dEndTime,nTool,'',nColor);
I'm OK changing Start or End values eg: PlanGantt.StartValues[nGantt] := dStartTime;
How do I change the colour?
Best Wishes
Tony
Gantt Chart change colour
Re: Gantt Chart change colour
Hi Tony,
Is the same that with any other series:
Is the same that with any other series:
Code: Select all
PlanGantt.ValueColor[nGantt] := clWhite;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Gantt Chart change colour
You have my sincere apologies. I don't know HOW you put up with such stupid customers.
As usual, my fault, I was using that but the series was off - screen.
Tony