Hi Chris,

On 05/02/07, Chris Pugh <[EMAIL PROTECTED]> wrote:
>
>
>
>
> I have some quick questions that I could not find answers to in the general
> archive, but may exist there (apologies in advance if they do):
>
>
>
> Volumetrics – can people let me know what type of data volumes have you used
> with Timeline – 100, 1k, 10k, 100k, more events?
> Sort order – for events with the same start/end date/times, can a sort order
> be applied, or is it just the order of the events in the XML?
> repeated events – is there a way to have an event repeat so it is on the
> same line throughout the timeline? It can be served as unique events in the
> XML, but I would like a way to group them on the same line together.
> Bubble – has anyone used the bubble as a quick-edit form? E.g. if I have
> data I would like to update behind the timeline, can I extend the bubble to
> allow a submit?
> Filter/highlight – the filter/highlight function is amazing. Can this be
> extended to allow filter/highlight of values within a range? E.g. if I have
> an extended attribute called "units", could I extend filter/highlight to
> allow me to put in a min and a max and see only the corresponding entries?
>

Yes, you can do it.
you can extend the filter/highlight function in this way:

function filterUnit(min, max){
    var filter = function(evt){
       return evt.getProperty('unit')>=min && evt.getProperty('unit')<=max;
   };

   for(var i=0;i<tl.getBandCount();i++){
      tl.getBand(i).getEventPainter().setFilterMatcher(filter);
   }
   tl.paint();
}

>
>
> Finally, can a Search be put onto the mailing list to be able to find
> answers more quickly?
>
>
>
> Cheers
>
>
>  Chris
> _______________________________________________
> General mailing list
> [email protected]
> http://simile.mit.edu/mailman/listinfo/general
>
>
>


-- 
Best regards

Linan Wang

_______________________________________________
General mailing list
[email protected]
http://simile.mit.edu/mailman/listinfo/general

Reply via email to