Hi,

On 11/1/07, Marc-Wayne M. Formales <[EMAIL PROTECTED]> wrote:
>
>     Element animate = diagramSVG.createElement("animateColor"); //where
> diagramSVG is Document type
>     //set attributes
>     animate.setAttribute( ...);
>       ...

Batik is namespace aware, so you need to use namespace when creating
or set attribute using the namespace aware methods

String svgNS = SVGConstants.SVG_NAMESPACE_URI;
diagramSVG.createElementNS(svgNS,...)
animate.setAttributeNS(svgNS,...)

Regards
Tonny Kohar
-- 
Inspiration and Expression
http://blogs.kiyut.com/tonny/

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to