Hi Daniel,

Either "hotzones" or "autowidth" will fix your problem.

It's worth googling both.  Hotzones are the elegant answer to fixed data
sets (see the JFK example).

autowidth is a brute method I use because all my data is generated and
loaded on the fly.

To use autowidth you need to set it on your theme:

    var theme = Timeline.ClassicTheme.create();
    theme.autoWidth = true;
    :

And then apply that theme to the *first* BandInfo:

        Timeline.createBandInfo({
            width:          60,
            timeZone:       11,
            intervalUnit:   Timeline.DateTime.DAY,
            intervalPixels: 50,
            eventSource:    eventSource,
            date:           new Date(),
            layout:        'original',  // original, overview, detailed
            theme:            theme  // <--***
        }),
       :

autowidth will then scale the "height" of your timeline to match the entries
you have.

I hope this helps.

PS:  I agree with what Larry said about CAPS and ???   ;-)


On Fri, Apr 3, 2009 at 7:31 AM, Larry Kluger <[email protected]> wrote:

> Hi Daniel,
>
> It's a feature, not a bug. If you don't want your Timeline to have a
> start/stop, then don't include those settings with the theme.
>
> Larry
> ps. If you use extra question marks -- more than one per sentence or  you
> use ALL CAPS ... Then: No more answers from me to you.
>
> ------------------------------
> *From:* Daniel <[email protected]>
> *To:* [email protected]
> *Sent:* Thursday, April 2, 2009 3:47:54 PM
> *Subject:* Re: Many itens in timeline
>
> Other problem..
> If I write:
>
> theme.timeline_start = date_start;
> theme.timeline_stop = date_stop;
>
> My timeline move only in one side and stop..   WHY??
>
>
>
>
>
>
> 2009/4/2 Daniel <[email protected]>
>
>> How can I know If a short interval of time have a lot events???
>> How many points I can show in the screen???
>>
>> How can I change a distance between two lines??? Actually have a many
>> space...
>>
>> I'm need see all point, and I'm using zoom, DECADE, YEAR, MONTH...
>>
>>
>>
>>
>> 2009/4/2 Adrien Di Mascio <[email protected]>
>>
>>
>>> Hi Daniel,
>>>
>>> On Thu, Apr 2, 2009 at 7:44 PM, Daniel <[email protected]> wrote:
>>> > People
>>> > I'm a have a big problem...  I'm have 30 itens in same period, and
>>> don't
>>> > show all in show of DECADE..
>>>
>>> In complement to what Larry said, and depending on what exactly you're
>>> trying
>>> to achieve you might also want to use hot zones in order to have a higher
>>> resolution for zones containing lot of events :
>>>
>>> Cheers,
>>> Adrien
>>>
>>>
>>>
>>
>
>
>
> >
>


-- 
Scott Thomson
0401 726 889

--~--~---------~--~----~------------~-------~--~----~
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