You're right, the asv rendering engine is dead slow. Try to lower demands on viewer:
-set xxx-rendering="optimizeSpeed", at least shape- rendering="crispEdges" (probably you'll know already;-) -asv antialiasing is very expensive, set defaultAntialias="false", or use .setDefaultAntialias(false) while updating dom and revert to .setDefaultAntialias(true) when finished -don't use classes for styling, inline attribs should process faster (nasty adice;-) -don't use polylines, use paths with relative stroking (lower case letter path commands) hth Paul --- In [email protected], Faisal Javeed <[EMAIL PROTECTED]> wrote: > I have a polyline and i have made a string of the format > x,y x,y x,y ..... > this is quite a long string having a larger number of coordinates. Now > when i call setAttribute on the points attribute of polyline and give this > string, the processor takes up to 10 seconds and after 10 seconds the > polyline can be seen on the screen. (looks like svg plug-in takes 10 > seconds to render such a large polyline) > Is there anyway to make this any faster. > > I am using a p4 with 512 Mb of ram and IE 6.0 with ASV 3.01. > > Regards > > [Non-text portions of this message have been removed] ----- To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click "edit my membership" ---- Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/svg-developers/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

