0
我正在使用pChart2.0通過示例代碼生成一個非常簡單的圖表。 的pChart數據集添加的點是在下面的格式pChat 2.0數據集
$MyData->addPoints(array("Type A","Type B","Type C"),"Types");
我有以下PHP數組使用動態值
$type[0] = "Type A";
$type[1] = "Type C";
$type[2] = "Type D";
我嘗試了用它像
$data = print_r($type, ',');
$MyData->addPoints(array($data),"Types");
也嘗試了implode函數,但不知何故pChart不接受數據集,也沒有生成圖表。有什麼建議嗎?