pchart更改饼图的百分比/值的颜色

时间:2016-01-27 03:25:48

标签: pchart

我无法更改饼图百分比的颜色。我希望颜色为黑色但不起作用。

这是我设置默认字体设置的地方。 RGB值已经为0。

$myPicture->setFontProperties(array("FontName"=>"../fonts/Forgotte.ttf","FontSize"=>15,"R"=>0,"G"=>0,"B"=>0));

这是饼图

$PieChart->draw2DPie(320,350,array("Radius"=>250,"LabelColor"=>PIE_LABEL_COLOR_MANUAL,"WriteValues"=>PIE_VALUE_PERCENTAGE,"DataGapAngle"=>10,"DataGapRadius"=>6,"Border"=>TRUE,"BorderR"=>255,"BorderG"=>255,"BorderB"=>255));

我该如何解决这个问题?谢谢。

1 个答案:

答案 0 :(得分:0)

这不是pChart website上最明显的文档:

  

标签的颜色可以静态定义或动态设置   LabelColor为:

     
      
  • PIE_LABEL_COLOR_MANUAL手动提供单一颜色(LabelR,...)

  •   
  • PIE_LABEL_COLOR_AUTO重复使用数据系列的颜色。

  •   

注意LabelR,所以它通常是:

array( "R" => 32, "G" => 42, "B" => 56 );

在这种情况下,您必须在其前面添加'标签'

array( "LabelR" => 32, "LabelG" => 42, "LabelB" => 56 );