Hi,
can anyone tell me how to display the Percent of Complete over every task bar of a UltraChart of type GanttChart?
Thank's.
Pietro Degani
If you are using a datatable as your datasource, you can set the column that will contain your percent complete with the following:
UltraChartSchedule.GanttChart.Columns.PercentCompleteColumnIndex = 4; // where '4' indicates the column index with the % value
In the page code, don't forget to set the following property:
GanttChart-ShowCompletePercentages="true"
How to get rid of that filled rectangle showing Completion percentage? I want to display my completion status with two coloured bar not that filled rectangle in the bar.