[svg-developers]

2005-05-01 Thread cjolif
The message cannot be represented in 7-bit ASCII encoding and has been sent as a binary attachment. [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

[svg-developers] Dynamic load SVG from database

2005-05-01 Thread danielhorng0001
Dear all, I write a simple asp script for dynamic load SVG from database. following is the asp script. Everything is work fine. But when I try to load a lager size SVG (ex: 1400px*1600px), then some part of graphic will be cut. Did anyone can tell me what's going on? Daniel Horng

[svg-developers] RE: Dynamic load SVG from database

2005-05-01 Thread Richard Smith
Does your dynamically loaded SVG include a 'viewBox' attribute in its svg element? You need to specify the bounding-box of the area to render, otherwise SVG doesn't know how big the image is! Example: svg viewBox=0 0 1600 1200 ... /svg - To unsubscribe send a message to: [EMAIL

[svg-developers] Re: Enterprise Application Use of Flash

2005-05-01 Thread welkerpaul
Yes;-) Ehm, and I did forget to mention that Mozilla started to check in canvas/ element support. Very interesting and handy dashboard technology as well. --- In svg-developers@yahoogroups.com, Rick Bullotta [EMAIL PROTECTED] wrote: I did forget to mention we also have Flex-based dashboards in

[svg-developers] Re: Enterprise Application Use of Flash

2005-05-01 Thread Jim Ley
welkerpaul [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Yes;-) Ehm, and I did forget to mention that Mozilla started to check in canvas/ element support. Yes, it's a great shame that mozilla and friends have decided to re-fight the browser wars with inventing more proprietrary

[svg-developers] SVG Scrolling

2005-05-01 Thread rwkeppers
Hi all. I am developing a dynamic charting application via SVG. Each chart is dynamically generated to display an entire month worth of data. My problem comes in that when these charts are created I have no way to control the overall width of my chart, this varies from month to month depending

[svg-developers] Re: Dynamic load SVG from database

2005-05-01 Thread danielhorng0001
Dear Richard, Thank you for your remind. The dynamic SVG doesn't specify the viewBox attribute. Because it is generated by the other program and we don't know How big? of this graphic. I resolve this problem by add overflow attribute to svg tag. Am I right?