Joe
unread,Jul 26, 2011, 4:39:19 PM7/26/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to SIMILE Widgets
Hello everyone,
I just started working with the SIMILE Widget and I wanted to create a
timeline with multiple "month bands" one for each region. In
addition, the year would sync all the sliding functions.
Each region would be a different color to differentiate it.
So you would have something like the below code, which displays, but
does not slide together when I slide the year band.
Any ideas???
Thanks
-Joe
var bandInfos = [
Timeline.createBandInfo({
eventSource: eventSource,
date: "Jun 28 2006 00:00:00 GMT",
width: "100px",
intervalUnit: Timeline.DateTime.MONTH,
intervalPixels: 100
}),
Timeline.createBandInfo({
eventSource: eventSource,
date: "Jun 28 2006 00:00:00 GMT",
width: "100px",
intervalUnit: Timeline.DateTime.MONTH,
intervalPixels: 100
}),
Timeline.createBandInfo({
eventSource: eventSource,
date: "Jun 28 2006 00:00:00 GMT",
width: "100px",
intervalUnit: Timeline.DateTime.YEAR,
intervalPixels: 200
})
];