Kammah, Nassim wrote:
>
> Hi All,
>
>
>
> I am fairly new to Timeline and I am still struggling with basic
> functions.
>
>
>
> I want to plot events for various sources : each sources has its own
> timeline. I am facing 2 problems :
>
> · Even though all the data can come via the same data source,
> the only way I found to *have all the events* (they are non
> overlapping) *on the same timeline* (same row ) was to create various
> data sources. The problem with this solution is that it impacts the
> loading time of the timeline.
>
> è Is there a way to force events with a similar tag to show up on the
> same line ( same row) ?
>
No, unfortunately. This capability has been requested before but I have
not had a chance to implement it.
> · In case there is no solution for it, is there a way to
> *disable the time marking on the timeline* ( cf. picture below) to
> enhance readability?
>
Yes, this CSS rule will get rid of them:
.timeline-ether-marker-bottom {
display: none;
}
If you want to get rid of them in only some of the bands then it
requires more work. To turn off the markings in the first band, do this
after you create the timeline
var bandDiv = tl.getBand(0)._div;
bandDiv.className = bandDiv.className + " abc";
and then declare this CSS rule:
.abc .timeline-ether-marker-bottom {
display: none;
}
Replace "abc" with something more meaning full.
David
_______________________________________________
General mailing list
[email protected]
http://simile.mit.edu/mailman/listinfo/general