使用SVGgraph,是否可以仅显示“数据量”标签,而不显示数据的标签(示例中为“l1”,“l2”和“l3”)? 我的代码如下所示:
require_once("svggraph/SVGGraph.php");
$data = array("l1" => 45, "l2" => 20, "l3" => 35);
$settings = array('show_data_labels' => true, 'show_label_amount' => true);
$graph = new SVGGraph(300, 200, $settings);
$graph->colours = $cols;
$graph->Values($data);
$graph->Fetch('SemiDonutGraph');
但是当我使用show_data_labels = true时,它会显示值和标签“l1”,“l2”和“l3”。如果我将其设置为false,则不显示任何内容。有没有办法只显示价值金额? 提前谢谢。
答案 0 :(得分:0)
应该这样做:
array([option => value, option2 => value2]);
$settings = array(['show_data_labels' => true, 'show_label_amount' => true]);