Open GoogleCodeExporter opened 9 years ago
Hi,
I too have the similar requirement.
I am trying from past 3 days to have control in displaying the events in
timeline
band.
I am trying to display the events one by one in particular order based on date
of
event.
Example: I have some events like
<data ...>
<event title="SummaryTask" start="2009/05/03" end="2009/12/31"
isDuration="true"/>
<event title="Task1" start="2009/05/03" end="2009/05/31"
isDuration="true"/>
<event title="Task2" start="2009/06/01" end="2009/07/31"
isDuration="true"/>
<event title="Task3" start="2009/07/01" end="2009/08/31"
isDuration="true"/>
<event title="Task4" start="2009/08/01" end="2009/09/31"
isDuration="true"/>
...
</data>
the summary of above data is: Event "SummaryTask" consists of "Task1, Task2,
Task3
and Task4"....
In this situation.. i want to display "SummaryTask" as TapeBar first and then I
want
to display "Task1, Task2, Task3 and Task4" in date order one below each other...
Will it be possible with present TimeLine version to take control of displaying
events on Band.. If it is possible. please let me know how can I do it?
Thanks very much in Advance,
Shyam.
Original comment by kothash...@gmail.com
on 18 May 2009 at 7:24
You can control which "track" an event is placed on by using the "trackNum"
event
attribute. But that means that you will need to manually layout the events by
specifying their tracks.
A big advantages of the current event layout heuristic is that it is automatic.
There
are no current plans to modify the heuristic.
The reason is that it is a hard problem since the heuristic focuses on
minimizing the
number of tracks that a set of events uses.
But you can write your own heuristic....and use it to automatically calculate
your
events' trackNum attributes.
Original comment by larryklu...@gmail.com
on 18 May 2009 at 5:14
Original issue reported on code.google.com by
GabrielR...@googlemail.com
on 7 Apr 2009 at 2:37