如何在 GD::Graph 中设置带有变量的选项?

发布于 2024-08-04 10:02:04 字数 425 浏览 5 评论 0原文

我正在使用 GD::Graph::lines 创建图表。对于选项集,我必须为选项编写固定值,例如 x_label =>; “label” 按照下面的代码:

my $mygraph = GD::Graph::lines->new($x, $y);
$mygraph->set(
    x_label     => 'label1',
    y_label     => 'label2',
    title       => 'title',

    line_types  => [1, 1, 1, 1],
    line_width  => 2,
) 

是否有任何方法可以使这些选项读取像 $x$y 这样的变量作为输入变量?

I am creating graphs using GD::Graph::lines. For option set, I have to write fixed values for options e.g. x_label => "label" as per below code:

my $mygraph = GD::Graph::lines->new($x, $y);
$mygraph->set(
    x_label     => 'label1',
    y_label     => 'label2',
    title       => 'title',

    line_types  => [1, 1, 1, 1],
    line_width  => 2,
) 

Is there any method to make these options to read variable like $x and $y are input variables?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑看君怀她人 2024-08-11 10:02:04

只需替换为这样的变量:

my $mygraph = GD::Graph::lines->new($x, $y);
$mygraph->set(
    x_label     => $label_x,
    y_label     => $label_y,
    title       => $title,

    line_types  => [1, 1, 1, 1],
    line_width  => 2,
)

Just replace with a variable like this:

my $mygraph = GD::Graph::lines->new($x, $y);
$mygraph->set(
    x_label     => $label_x,
    y_label     => $label_y,
    title       => $title,

    line_types  => [1, 1, 1, 1],
    line_width  => 2,
)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文