2017-08-17 57 views
0

使用SVGgraph,可以僅顯示'數據量'標籤而不顯示數據標籤(示例中的「l1」,「l2」和「l3」)? 我的代碼如下所示:PHP/SVGgraph數據量標籤

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

它應該做的是這樣的:

array([option => value, option2 => value2]); 

$settings = array(['show_data_labels' => true, 'show_label_amount' => true]); 
+0

真。我修改了這個問題。但這並不能解決問題。 – zsram