Hi,
Is there a way to force a minimum line size so that all GanttTimeEntry are displayed. Sometimes I am finding that as we zoom out entries disappear from the chart. Ideally we would like to specify that a line of 1 pixel thickness is drawn even if the Start/End period is very small.
How can we do this ?
You can achieve this by handling the FillSceneGraph event. In the event handler, find all the Box primitives representing the Gantt Item Time Entries, find only those with a Width of zero, and then add Line primitives to the Scene using the positions of those zero-width boxes.
Thanks David. That solution is spot on.
Yes I did know about the gantt-view control but the chart generally gives us the behaviour we need for the control in question.
Much appreciate the excellent solution. Cheers.