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.
HI
Apologies for a late response but am jst getting round to implement this change.
Your code does allow me to add an image but it does not seem to remove the default arrow - my custom image is sat behind it.
I have tried using
ultraGanttView1.TimelineSettings.BarSettings.DeadlineIndicatorAppearance.Image ; ultraGanttView1.TimelineSettings.BarSettings.DeadlineIndicatorAppearance.ImageBackground ;
but it is still there!
Any help is appreciated.
Have sorted it now. The issue was the image i was applying was transparent for some reason so the arrow was showing through.
To overcome this i set the bordercolor and forecolor to white so merged in with background