Hi,

I'm trying to amending the Exhibit timeline element so the timeline
movement is restricted however the code below (which I think is right)
is not blocking the scroll -

Grateful for any help on where im going wrong - or have I missed
something obvious.



In the exhibit I reference ex:configuration="timelineConfig"

----------------------------------------then-----------------

var timelineConfig = {


         timelineConstructor: function (div, eventSource) {
            div.style.height="350px";


var theme1 = Timeline.ClassicTheme.create();
theme1.firstDayOfWeek = 1;
theme1.timeline_start = new Date(Date.UTC(2010,1,1,20,00,00,0));
theme1.timeline_stop = new Date(Date.UTC(2011,0,17,20,00,00,0));

            var bandInfos = [
                Timeline.createBandInfo({


            width:          "75%",
                    intervalUnit: Timeline.DateTime.WEEK,
                    intervalPixels: 300,
                    eventSource:    eventSource,
            theme:          theme1,

                }),
                Timeline.createBandInfo({
                    overview:       true,
                    width:          "25%",
                    intervalUnit: Timeline.DateTime.MONTH,
                    intervalPixels: 80,
                    eventSource:    eventSource,
                    showEventText:  false,
                    theme:          theme1,
            trackHeight: 0.5,
                    trackGap: 0.2
                })
            ];

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.

Reply via email to