Open GoogleCodeExporter opened 8 years ago
I just encountered the same issue.
I found a fix:
under
rect.style.zIndex = el_zindex - 1;
add
if (fillColor == 'transparent') rect.filled = false;
and replace:
rect.appendChild(fill);
with if (fillColor !== 'transparent') rect.appendChild(fill);
Does anyone know why it uses a separate element for the fill rather than
setting rect.fillColor? There must be a reason behind it.
Original comment by thejkwhosaysni@gmail.com
on 19 Aug 2010 at 4:21
Original issue reported on code.google.com by
allen%vy...@gtempaccount.com
on 16 Aug 2010 at 9:31