Hi,
I am trying to display a tool tip on an ultracalendarinfo. I cannot figure out how to accomplish this. It is a simple tool tip for all dates on the calendat.
Thanks.
Hello AgilysysMD,
I`m not sure that I understand your question. What do you mean “Tool tip on an ultraCalendarInfo”. Could you please let me know what is your control which using UltraCalendarInfo? Could you please provide me more details about your scenario and what you are trying to achieve.
Probably you could use our UltraToolTipManager. One simple code example is:
UltraToolTipInfo info = new UltraToolTipInfo();
info.ToolTipText = "My text";
info.ToolTipTitle = "My Title";
ultraToolTipManager1.SetUltraToolTip(ultraGanttView1, info);
Please if you have any questions, feel free to ask me
Regards