如何在 GD::Graph 中设置带有变量的选项?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需替换为这样的变量:
Just replace with a variable like this: