I managed it to get more than 2 bands by this:
var theme = Timeline.ClassicTheme.create();
theme.event.bubble.width = 320;
theme.event.bubble.height = 220;
theme.ether.backgroundColors[1] = theme.ether.backgroundColors[0];
var d = Timeline.DateTime.parseGregorianDateTime("1870")
var bandInfos = [
Timeline.createBandInfo({
width: "10%",
intervalUnit: Timeline.DateTime.DECADE,
intervalPixels: 200,
date: d,
showEventText: false,
theme: theme
}),
Timeline.createBandInfo({
width: "50%",
intervalUnit: Timeline.DateTime.DECADE,
intervalPixels: 200,
eventSource: eventSource,
date: d,
theme: theme
}),
Timeline.createBandInfo({
width: "20%",
intervalUnit: Timeline.DateTime.DECADE,
intervalPixels: 200,
eventSource: eventSource,
date: d,
theme: theme
}),
Timeline.createBandInfo({
width: "5%",
intervalUnit: Timeline.DateTime.DECADE,
intervalPixels: 200,
eventSource: eventSource,
date: d,
theme: theme
}),
Timeline.createBandInfo({
width: "5%",
intervalUnit: Timeline.DateTime.MONTH,
intervalPixels: 200,
eventSource: eventSource,
date: d,
theme: theme
}),
Timeline.createBandInfo({
width: "10%",
intervalUnit: Timeline.DateTime.DECADE,
intervalPixels: 200,
eventSource: eventSource,
date: d,
theme: theme
})
];
But I've got no idea how to link more than the first both togehter
Any Ideas?
Thx
Joei
_______________________________________________ General mailing list [email protected] http://simile.mit.edu/mailman/listinfo/general
