Hello,
I created Task without Summary Task.
It displays strike through line of different color.
Is there any Property to remove that?
I am setting color for Bar in following way
If Not task.IsSummary Then
task.TimelineSettings.BarSettings.BarAppearance.BackColor = Color
End If
This Task is not Summary Task.
Please let me know if I need to provide more information.
Please see screenshot for more details.
Thanks,
Imran
Hello Imran,
There are few possible options to solve this task, but maybe the easiest way could be :
Option 1: If you set BackColor and BackGradientStyle properties. For example
ultraCalendarInfo1.Tasks[0].TimelineSettings.BarSettings.BarAppearance.BackColor =Color.Yellow;
ultraCalendarInfo1.Tasks[0].TimelineSettings.BarSettings.BarAppearance.BackGradientStyle = Infragistics.Win.GradientStyle.None;
Option 2: If you set BackColor and BackColor2 properties. For example:
ultraCalendarInfo1.Tasks[0].TimelineSettings.BarSettings.BarAppearance.BackColor2 =Color.Yellow;
Let me know if you have any questions.
Hello Georgi,
Thanks for your help.
It works for me.
Thank you very much for the feedback. If you have any further questions, feel free to write me