HI,
Is it possible to change the icon that is used for the Deadline indicator? I would like to replace it with a custom bitmap instead of the little white downward arrow.
Regards
Simon
Simon,
Yes, there is a DeadlineIndicatorAppearance property in BarSettings under TimelineSettings. You can do something like this:
Bitmap thumb = new Bitmap(@"...\...\PulgarArriba.png");
ultraGanttView1.TimelineSettings.BarSettings.DeadlineIndicatorAppearance.Image = thumb;
that's great, thanks for coming back to me.