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.
Coder said: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.
If I understand correctly, you are trying to remove the outer color bar and just leave the two bars that show the percent complete and percent remaining. What I ended up doing was setting the outer bar alpha level to 0 (zero) so it is transparent. <ColorModel AlphaLevel="0" /> <GanttChart> <EmptyPercentagesPE Fill="AliceBlue" StrokeWidth="1" StrokeOpacity="70" /> <CompletePercentagesPE Fill="#558FAA" StrokeWidth="1" StrokeOpacity="70" /> </GanttChart>Note that this still draws the outer bar and it still takes up space, but you don’t see it so you might want to set the item spacing to 0 (zero). GanttChart-ItemSpacing="0"
If anyone has a better way, please post as this seems to be a bit of a kluge.
Hello,
I am too facing the same problem how to remove the outer color bar when "ShowCompletePercentages" proprty set to true,
If any one have solution please post it.
Thank you in advance.
setting the ColorModel.AlphaLevel = 0 should do it. if you have a GradientEffect in the Effects collection, remove that as well.
Thank you for help,
Got the point and it works.
Thanks again.