--- In [email protected], Thomas Liesner <[EMAIL PROTECTED]> wrote: > > Hello all, > > i have the following simple (but large) svg: > > http://www.alphabot.de/apache2-default/planetnames.svg > > The problem is the text-element inside the g-elements like in this excerpt: > > <g id="p1" class="planet"> > <title>Ceti Alpha one</title> > <circle id="p1circle" cx="1337" cy="1648" r="5" > style="fill:gray;stroke:black;" /> > <text text-anchor="middle" id="p1text" cx="1337" cy="1663">Ceti > Alpha one</text> > </g> > > There are 500 elements like this and all the text-elements are rendered > at x=0 and y=0. > Any explanation or even help? > > TIA, > Tom >
First problem is that cx/cy are not valid attributes of the text element, it's simply x/y. Next, are you transforming the <g> element for each of the 500 elements? ------------------------ Yahoo! Groups Sponsor --------------------~--> 1.2 million kids a year are victims of human trafficking. Stop slavery. http://us.click.yahoo.com/.QUssC/izNLAA/TtwFAA/1U_rlB/TM --------------------------------------------------------------------~-> ----- 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/

