Chart
view release on metacpan or search on metacpan
lib/Chart/ErrorBars.pm view on Meta::CPAN
$self->{'gd_obj'}->line( $x2 - 3, $y_error_down, $x3 + 3, $y_error_down, gdBrushed );
$flag = 'false';
}
# store the imagemap data if they asked for it
if ( $self->true( $self->{'imagemap'} ) )
{
$self->{'imagemap_data'}->[$i][$j] = [ $x2, $y2 ];
}
}
} #end for
}
}
}
return 1;
}
## @fn private _prepare_brush
# set the gdBrush object to trick GD into drawing fat lines
#
# Overwrite Base function
#
sub _prepare_brush
{
my $self = shift;
my $color = shift;
my $type = shift;
my ( $radius, @rgb, $brush, $white, $newcolor );
# get the rgb values for the desired color
@rgb = $self->{'gd_obj'}->rgb($color);
# get the appropriate brush size
if ( $type eq 'line' )
{
$radius = $self->{'brush_size'} / 2;
}
elsif ( $type eq 'point' )
{
$radius = $self->{'pt_size'} / 2;
}
# create the new image
$brush = GD::Image->new( $radius * 2, $radius * 2 );
# get the colors, make the background transparent
$white = $brush->colorAllocate( 255, 255, 255 );
$newcolor = $brush->colorAllocate(@rgb);
$brush->transparent($white);
# draw the circle
$brush->arc( $radius - 1, $radius - 1, $radius, $radius, 0, 360, $newcolor );
# fill it if we're using lines
$brush->fill( $radius - 1, $radius - 1, $newcolor );
# set the new image as the main object's brush
return $brush;
}
## @fn private int _draw_legend()
# let them know what all the pretty colors mean
# @return status
## let them know what all the pretty colors mean
sub _draw_legend
{
my $self = shift;
my ( $length, $step, $temp, $post_length );
my $j = 0;
# check to see if legend type is none..
if ( $self->{'legend'} =~ /^none$/ )
{
return 1;
}
#just for later checking and warning
if ( $#{ $self->{'legend_labels'} } >= 0 )
{
$post_length = scalar( @{ $self->{'legend_labels'} } );
}
#look if every second or eyery third dataset is a set for data
if ( $self->false( $self->{'same_error'} ) )
{
$step = 3;
}
else
{
$step = 2;
}
# init a field to store the length of the longest legend label
unless ( $self->{'max_legend_label'} )
{
$self->{'max_legend_label'} = 0;
}
# fill in the legend labels, find the longest one
for ( my $i = 1 ; $i < $self->{'num_datasets'} ; $i += $step )
{
my $label = $j + 1;
unless ( $self->{'legend_labels'}[$j] )
{
$self->{'legend_labels'}[$j] = "Dataset $label";
}
$length = length( $self->{'legend_labels'}[$j] );
if ( $length > $self->{'max_legend_label'} )
{
$self->{'max_legend_label'} = $length;
}
$j++;
}
#we just have to label the datasets in the legend
#we'll reset it, to draw the sets
$temp = $self->{'num_datasets'};
$self->{'num_datasets'} = $j;
# check to see if they have as many labels as datasets,
# warn them if not
if ( ( $post_length > 0 ) && ( $post_length != $j ) )
{
carp "The number of legend labels and datasets doesn\'t match";
}
# different legend types
if ( $self->{'legend'} eq 'bottom' )
{
$self->_draw_bottom_legend;
}
elsif ( $self->{'legend'} eq 'right' )
{
$self->_draw_right_legend;
}
elsif ( $self->{'legend'} eq 'left' )
{
$self->_draw_left_legend;
}
elsif ( $self->{'legend'} eq 'top' )
{
$self->_draw_top_legend;
}
else
{
carp "I can't put a legend there (at " . $self->{'legend'} . ")\n";
}
#reset the number of dataset to make sure that everything goes right
$self->{'num_datasets'} = $temp;
# and return
return 1;
}
#find the range of the x scale, don't forget the errors!
sub _find_y_range
{
my $self = shift;
my $data = $self->{'dataref'};
my $max = undef;
my $min = undef;
if ( $self->false( $self->{'same_error'} ) )
{
for my $i ( 1 .. $self->{'num_datasets'} )
{
if ( ( $i - 1 ) % 3 == 0 )
{
for my $j ( 0 .. $self->{'num_datapoints'} )
{
if ( defined( $data->[$i][$j] ) && defined( $data->[ $i + 1 ][$j] ) && defined( $data->[ $i + 2 ][$j] ) )
{
if ( defined $max )
{
if ( ( $data->[$i][$j] + abs( $data->[ $i + 1 ][$j] ) ) > $max )
{
$max = $data->[$i][$j] + abs( $data->[ $i + 1 ][$j] );
}
if ( ( $data->[$i][$j] - abs( $data->[ $i + 2 ][$j] ) ) < $min )
{
$min = $data->[$i][$j] - abs( $data->[ $i + 2 ][$j] );
}
}
else { $min = $max = $data->[$i][$j]; }
}
}
}
}
return ( $min, $max );
}
else
{
for my $i ( 1 .. $self->{'num_datasets'} )
{
if ( ( $i - 1 ) % 2 == 0 )
{
for my $j ( 0 .. $self->{'num_datapoints'} )
{
if ( defined( $data->[$i][$j] ) && defined( $data->[ $i + 1 ][$j] ) )
{
if ( defined $max )
{
if ( ( $data->[$i][$j] + $data->[ $i + 1 ][$j] ) > $max )
{
$max = $data->[$i][$j] + $data->[ $i + 1 ][$j];
( run in 0.660 second using v1.01-cache-2.11-cpan-75ffa21a3d4 )