hi Marco and friends,
looking deep into the outcome of the exported SVG,
i have a suggestion for enhancement - use CSS classes instead of style attributes.
this way the appearance of features can be easily controlled,
by both TDX code and by users that wish to change the appearance.
just for example, for the grid:
inside the <defs> add:
<style type="text/css" id="style1">
.grid_line {
stroke: #999999;
stroke-width: 2.5;
fill: none;
}
</style>
than instead of <path stroke-width="2.50" stroke="#999999" d="..."/>
use <path class="grid_line" d="..."/>
do the same for all features and you got better control and ease of customization.
what you think?
regards,
Ofir Shemesh