Hi Ramon, AFAIK, labels should never be wrapped. There's a known bug (see the Timeline release notes) with label wrapping occurring on Firefox 3 for Mac. Which browser and platform are you using?
For example, some of the titles on the Kennedy example are quite long and they don't wrap. Eg, this label does not wrap: If time flies when you're having fun, it hits the afterburners when you don't think you're having enough. (I'm adding the above as another test in the test timeline.) Exactly how long are your labels that are wrapping? How label widths are calculated: The original-painter.js file sets an explicit .style.width property -- see Timeline.OriginalEventPainter.prototype._paintEventLabel The div width is determined by first loading a hidden span with the title, then seeing what its width is. This measurement is done by SimileAjax.Graphics._FontRenderingContext.prototype.computeSize in file graphics.js (in the ajax tree, not timeline tree). The span used for the measuring is created by original-painter.js in function Timeline.OriginalEventPainter.prototype._prepareForPainting -- note the section that culminates in the call to this._frc = SimileAjax.Graphics.getFontRenderingContext(eventLabelPrototype); Regards, Larry On Oct 3, 5:49 pm, felciano <[EMAIL PROTECTED]> wrote: > Hi -- > > Is there a Timeline setting that controls the width or truncation > point for displayed event labels? Events with long titles appear > truncated, or wrapped around to a 2nd line that isn't visible in the > timeline. Is that configurable? > > In case it matters, I've noticed this is a particular problem when > there the label has very_long_words_in_it (I am visualizing code > elements, so there are long variable names w underscores). > > Thanks, > > Ramon --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
