hi,
i want
to modify the style properties of a text element using
batik.
i do
it in _javascript_ like shown below.would you please guide how i should achieve
the same using batik.
thanks
a lot
GVS
/////////////////////////////////////////////////////////////////////////////////////////////////////
var textElements =
document.getElementsByTagName("text");
var currentElement; for(var i=0; i<textElements.length; i++) {
currentElement = textElements.item(i); currentElement.style.setProperty('display','inline'); currentElement.style.setProperty( "pointer-events","none"); } |