Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
570
Add resources to the ToolTip in the Timeline area.
posted

Hey,

Is it possible to add the Resources information to the ToolTip text in the Timeline area?

Thanks,

Mano

  • 69832
    Verified Answer
    Offline posted

    void ganttView_TaskToolTipDisplaying(object sender, TaskToolTipDisplayingEventArgs e)
    {
        ToolTipInfo info = e.ToolTipInfo;
        info.ToolTipText = e.Task.Resources.ToString();
        e.ToolTipInfo = info;
    }