gpt4 book ai didi

pie-chart - JpGraph 饼图切片颜色不起作用

转载 作者:行者123 更新时间:2023-12-03 08:14:20 26 4
gpt4 key购买 nike

我在 php 中使用了 JpGraph。一切正常,但切片 ($p1->SetSliceColors($color);) 颜色不起作用。它一直是默认颜色。
这是我使用的代码。请帮我 :

    $data    = array('40','50', '10');
$Legends = array('Loss','Win', 'Draw');
$labels = array("Loss\n(%.1f%%)","Win\n(%.1f%%)","Draw\n(%.1f%%)");
$color = array('red','red','red');
$graph = new PieGraph(550,350);
$graph->SetShadow();

$p1 = new PiePlot3D($data);
$p1->ExplodeSlice(1);
$p1->SetCenter(0.55);
$p1->SetLegends($Legends);
$graph->legend->Pos(0.5,0.1);


$p1->SetTheme("earth");
$p1->SetSliceColors($color);

// Setup the labels to be displayed
$p1->SetLabels($labels);
$p1->SetLabelPos(1);
$p1->SetLabelType(PIE_VALUE_PER);
$p1->value->Show();
$p1->value->SetFont(FF_FONT1,FS_NORMAL,9);
$p1->value->SetColor('navy');

$graph->Add($p1);
$graph->Stroke();

最佳答案

我有同样的问题。在设置颜色之前调用 Add 方法:

$p1 = new PiePlot3D($data);
$graph->Add($p1);

Changing the display settings of line/bar graphs

关于pie-chart - JpGraph 饼图切片颜色不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5481754/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com