Hello,
is it possible to add some custom information into TimelineSettings.BarSettings.BarTextRight ?
(eg: one of my custom colums)
Regards.
Hello Maxime,
One possible approach to solve your task, could be if you are using CreationFIlter. By this way you could add for example TextUIElements with your custom information.
Let me know if you have any further questions.
Regards
Hello Georgi,
I've tryed the CreationFIlter way and it works perfectly, thanks !Now i can modify (or not) the BarTextRight on the fly.
I've just implemented IUIElementCreationFilter with :
BeforeCreateChildElements(UIElement parent) return false;AndAfterCreateChildElements(UIElement parent) { if (!(parent is Infragistics.Win.UltraWinGanttView.UIElements.TaskBarTextUIElement)) return; ((Infragistics.Win.TextUIElement)(parent)).Text = "Something"; }
Thanks for your feedback. If you have any questions, feel free to write us