SVG-Template-Graph
view release on metacpan or search on metacpan
lib/SVG/Template/Graph.pm view on Meta::CPAN
}
=head2 D
$self->D()
returns the SVG Document object
=cut
sub D ($) {
my $self = shift;
return $self->{_svgTree_};
}
=head2 T($name)
$self->T($name)
returns the currently invoked transformation object. Returns transformation object $name if requested by name
=cut
sub T ($;$) {
my $self = shift;
my $name = shift;
return $self->{maps}->{$name} if defined $name;
return $self->{map};
}
=head2 setGraphTarget $targetid, $elementType <rect>, %element_attributes
define the graph target (currently only rectangles are accepted) on top of which the data will be drawn
( run in 0.925 second using v1.01-cache-2.11-cpan-524268b4103 )