Hierarchies with same types in all levels
Sometimes you might have a hierarchy with same types in all levels like this:
Node {Name, Start, End}
-- Node {Name, Start, End}
---- Node {Name, Start, End}
---- Node {Name, Start, End}
Node {Name, Start, End}
-- Node {Name, Start, End}
Node {Name, Start, End}
In such scenarios, the gantt will render all the rows as summaries as you will have to associate a HierarchicalItemTemplate to the Node type. The hierarchy would be rendered like this by default:
Hierarchy with same type in all levels
The above is not correct as the leaf tasks are rendered as summaries. So, you can instead make the gantt render nodes with children as summaries and without children as leaves, with this FlexyGantt property:
<fxgantt:FlexyGantt .... ForceParentTemplateEvenIfChildless="false" />
Hierarchy with same types in all levels rendered correctly
� RadiantQ 2009 - 2019. All Rights Reserved.