In the Gantt control, the following properties are available:
- BubbleTask
- BubbleCell
- BubbleRow
You can use BubbleTask to specify the bubble for task boxes (in the grid) and BubbleRow to specify the bubble for task row headers.
Example:
.aspx
<DayPilot:DayPilotGantt
ID="DayPilotGantt1"
runat="server"
...
BubbleTaskID="DayPilotBubble1"
BubbleRowID="DayPilotBubble1"
>
</DayPilot:DayPilotGantt>
<DayPilot:DayPilotBubble runat="server" ID="DayPilotBubble1"></DayPilot:DayPilotBubble>
Code behind:
void DayPilotGantt1_BeforeTaskRender(object sender, BeforeTaskRenderEventArgs e)
{
e.Box.BubbleHtml = "Complete: " + e.Complete + "%";
e.Row.BubbleHtml = "Task Name: " + e.Text;
}
You will need the latest sandbox build (8.1.3459) for the e.Row.BubbleHtml property to work.
http://www.daypilot.org/sandbox/