I have built a composite chart containing a Gantt and a Line.
I'd like to draw some text on the gantt bars--for example, the name of the person assigned to the task.
Can someone point me in the right direction?
When you create your gantt data source, there is an Owner column of type string that can be set for any given gantt point. That string can be shown inside the gantt box when you set ShowOwners to true on your layer's ChartTypeAppearance property.
GanttChartAppearance appearance = new GanttChartAppearance();appearance.ShowOwners = true;ganttLayer.ChartTypeAppearance = appearance;