(
$GD::Graph::area::VERSION
) =
'$Revision: 1.17 $'
=~ /\s([\d.]+)/;
@GD::Graph::area::ISA
=
qw( GD::Graph::axestype )
;
sub
draw_data_set
{
my
$self
=
shift
;
my
$ds
=
shift
;
my
@values
=
$self
->{_data}->y_values(
$ds
) or
return
$self
->_set_error(
"Impossible illegal data set: $ds"
,
$self
->{_data}->error);
my
$dsci
=
$self
->set_clr(
$self
->pick_data_clr(
$ds
));
my
$brci
=
$self
->set_clr(
$self
->pick_border_clr(
$ds
));
my
$poly
= GD::Polygon->new();
my
(
@top
,
@bottom
);
for
(
my
$i
= 0;
$i
<
@values
;
$i
++)
{
my
$value
=
$values
[
$i
];
next
unless
defined
$value
;
my
$bottom
=
$self
->_get_bottom(
$ds
,
$i
);
$value
=
$self
->{_data}->get_y_cumulative(
$ds
,
$i
)
if
$self
->{cumulate};
my
(
$x
,
$y
) =
$self
->val_to_pixel(
$i
+ 1,
$value
,
$ds
);
push
@top
, [
$x
,
$y
];
push
@bottom
, [
$x
,
$bottom
];
next
unless
defined
$self
->{_hotspots}->[
$ds
]->[
$i
];
if
(
$i
== 0)
{
$self
->{_hotspots}->[
$ds
]->[
$i
] = [
"poly"
,
$x
,
$y
,
$x
,
$bottom
,
$x
- 1,
$bottom
,
$x
- 1,
$y
,
$x
,
$y
];
}
else
{
$self
->{_hotspots}->[
$ds
]->[
$i
] = [
"poly"
,
$poly
->getPt(
$i
),
@{
$bottom
[
$i
]},
@{
$bottom
[
$i
-1]},
$poly
->getPt(
$i
-1),
$poly
->getPt(
$i
)];
}
}
foreach
my
$pair
(
@top
,
reverse
@bottom
)
{
$poly
->addPt(
@$pair
);
}
$self
->{graph}->filledPolygon(
$poly
,
$dsci
)
if
defined
$dsci
;
$self
->{graph}->polygon(
$poly
,
$brci
)
if
defined
$brci
;
if
(
defined
$brci
&&
(
$self
->{right} -
$self
->{left})/
@values
>
$self
->{accent_treshold})
{
for
my
$i
( 0 ..
$#top
)
{
my
(
$x
,
$y
) = @{
$top
[
$i
]};
my
$bottom
=
$bottom
[
$i
]->[1];
$self
->{graph}->dashedLine(
$x
,
$y
,
$x
,
$bottom
,
$brci
);
}
}
return
$ds
}
"Just another true value"
;