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
75
Percent Complete Gantt Chart
posted

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

Parents
  • 90
    posted

    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" 
    
Reply Children