学生向けの棒グラフを作成しました。ここで、これより下のすべてが不合格であることを示すカットオフラインが必要です。Y-AXIS のポイント 35 にある水平線は、私が持とうとしているものです。助言がありますか?これは私が現在持っているものです
my $graph = GD::Graph::bars->new(800, 800);
@data = (
["Jack","Jill"],
['30','50'],
);
$graph->set(
x_label => 'Students',
y_label => 'Scores',
title => 'Student Vs. Scores',
y_max_value => 60,
y_tick_number => 8,
y_label_skip => 2
) or die $graph->error;
my $gd = $graph->plot(\@data) or die $graph->error;
open(IMG, '>file.png') or die $!;
binmode IMG;
print IMG $gd->png;