2014-12-04 49 views
0

我有2个阵列的条形图。 $pm$estimate如何同步图表导演中的2个y轴

我计算$percent = ($estimate/$pm) * 100有一个百分比的数组来创建我的折线图的值。

现在的问题是如何在条形图和折线图中同步我的2个y轴。

这里是我的代码

$transmonth = array(1, 2, 3); 
$estimate = array(80, 50, 40); 
$pm = array(10, 5, 8); 

foreach($estimate as $k => $v){ 
    $percent[$k] = ($pm[$k]/$v) * 100; 
} 

$data = $percent; 
$data1 = $estimate; 
$data2 = $pm; 
$labels = $transmonth; 

$c = new XYChart(780, 400, -1,1); 
$c->addTitle("Mini-PM Hit Rate"); 

# Set the plotarea at (80, 40) and of 650, 300 pixels in size. Use alternating light 
# grey (f8f8f8)/white (ffffff) background. Set border to transparent and use grey 
# (CCCCCC) dotted lines as horizontal and vertical grid lines 

$c->setPlotArea(80, 80, 650, 250, 0xffffff, 0xf8f8f8,Transparent, $c->dashLineColor(0xcccccc, Dotline), $c->dashLineColor(0xcccccc, Dotline)); 

$legendObj = $c->addLegend(70, 50, false, "arial.ttf", 10); 
$legendObj->setBackground(Transparent); 

$lineLayer = $c->addLineLayer2(); 

$lineLayerObj = $lineLayer->addDataSet($data, 0x009966, "Hit Rate Percentage"); 
$lineLayerObj->setDataSymbol(CircleShape, 9, 0xff9966, 0x009966); 
$lineLayerObj->setDataLabelFormat("{value|1}"); 
$lineLayerObj->setDataLabelStyle("arialbd.ttf", 8); 

$lineLayer->setLineWidth(2); 
$lineLayer->setUseYAxis2(); 
$c->yAxis2->setLinearScale(0, 120, 10); 

$layer = $c->addBarLayer2(Side); 
$layer->addDataSet($data1, 0x10b4f1, "Estimated PM"); 
$layer->addDataSet($data2, 0x7B3BA3, "Actual PM"); 
$layer->setBorderColor(Transparent); 
$layer->setBarGap(0.2, TouchBar); 


$c->xAxis->setLabels($labels); 
$c->xAxis->setTickOffset(0.5); 

$c->xAxis->setTitle("Period"); 
$c->yAxis->setTitle("Total Handlers"); 
$c->yAxis2->setTitle("Hit Rate Percentage (%)"); 

header("Content-type: image/png"); 
print($c->makeChart2(PNG)); 

请帮助。

回答

0

根据你的代码,百分比可以远高于100%。但是,代码中有一行将yAxis2配置为仅从0到120。所以百分比数据可能会溢出轴范围。如果删除该行代码并让ChartDirector 自动确定yAxis2的y轴刻度,则该刻度将使整个 行落入该图表内。

+0

多数民众赞成我的问题其实...........兄弟如何我可以同步我的yaxis2 yaxis .....我的意思是如何设置我的yaxis2依赖yaxis和自动调整它.. ...你能帮我做到吗?????????? – elvis 2014-12-08 00:43:58