当前位置: 首页>>代码示例>>PHP>>正文


PHP pData::setAbscissaLabelSeries方法代码示例

本文整理汇总了PHP中pData::setAbscissaLabelSeries方法的典型用法代码示例。如果您正苦于以下问题:PHP pData::setAbscissaLabelSeries方法的具体用法?PHP pData::setAbscissaLabelSeries怎么用?PHP pData::setAbscissaLabelSeries使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pData的用法示例。


在下文中一共展示了pData::setAbscissaLabelSeries方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: testDrawFilledRadar

 public function testDrawFilledRadar()
 {
     // Dataset definition
     $DataSet = new pData();
     $DataSet->addPoints(array("Memory", "Disk", "Network", "Slots", "CPU"), "Label");
     $DataSet->addPoints(array(1, 2, 3, 4, 3), "Serie1");
     $DataSet->addPoints(array(1, 4, 2, 6, 2), "Serie2");
     $DataSet->AddSeries("Serie1");
     $DataSet->AddSeries("Serie2");
     $DataSet->setAbscissaLabelSeries("Label");
     $DataSet->setSeriesName("Reference", "Serie1");
     $DataSet->setSeriesName("Tested computer", "Serie2");
     // Initialise the graph
     $canvas = new TestCanvas();
     $Test = new pChart(400, 400, $canvas);
     $Test->setFontProperties("Fonts/tahoma.ttf", 8);
     $Test->setGraphArea(30, 30, 370, 370);
     // Draw the radar graph
     $Test->drawRadarAxis($DataSet->GetData(), $DataSet->GetDataDescription(), TRUE, 20, new Color(120), new Color(230));
     $Test->drawFilledRadar($DataSet->GetData(), $DataSet->GetDataDescription(), 50, 20);
     // Finish the graph
     $Test->drawLegend(15, 15, $DataSet->GetDataDescription(), new Color(255));
     $Test->setFontProperties("Fonts/tahoma.ttf", 10);
     $Test->drawTitle(0, 22, "Example 8", new Color(50), 400);
     $this->assertEquals('c2db8bcd7112711a97e8f1798ddd77e5', md5($canvas->getActionLog()));
 }
开发者ID:rbraband,项目名称:pChart,代码行数:26,代码来源:pChartTest.php

示例2: pData

 Example3 : an overlayed bar graph, uggly no?
*/
// Standard inclusions
require_once "../lib/pData.php";
require_once "../lib/pChart.php";
require_once '../lib/GDCanvas.php';
require_once '../lib/BackgroundStyle.php';
// Definitions
$DataSet = new pData();
$canvas = new GDCanvas(700, 230);
$Chart = new pChart(700, 230, $canvas);
// Dataset definition
$DataSet->AddPoints(array(1, 4, -3, 2, -3, 3, 2, 1, 0, 7, 4, -3, 2, -3, 3, 5, 1, 0, 7), "Serie1");
$DataSet->AddPoints(array(0, 3, -4, 1, -2, 2, 1, 0, -1, 6, 3, -4, 1, -4, 2, 4, 0, -1, 6), "Serie2");
$DataSet->AddAllSeries();
$DataSet->setAbscissaLabelSeries();
$DataSet->SetSeriesName("January", "Serie1");
$DataSet->SetSeriesName("February", "Serie2");
// Initialise the graph
$Chart->setFontProperties("../Fonts/tahoma.ttf", 8);
$Chart->setGraphArea(50, 30, 585, 200);
$canvas->drawFilledRoundedRectangle(new Point(7, 7), new Point(693, 223), 5, new Color(240), 1, 0, ShadowProperties::NoShadow());
$canvas->drawRoundedRectangle(new Point(5, 5), new Point(695, 225), 5, new Color(230), 1, 0, ShadowProperties::NoShadow());
$Chart->drawGraphBackground(new BackgroundStyle(new Color(255), TRUE));
$Chart->drawScale($DataSet, ScaleStyle::DefaultStyle(), 0, 2, TRUE);
$Chart->drawGrid(new GridStyle(4, TRUE, new Color(255), TRUE));
// Draw the 0 line
$Chart->setFontProperties("../Fonts/tahoma.ttf", 6);
$Chart->drawTreshold(0, new Color(143, 55, 72), TRUE, TRUE);
// Draw the bar graph
$Chart->drawOverlayBarGraph($DataSet->GetData(), $DataSet->GetDataDescription());
开发者ID:rbraband,项目名称:pChart,代码行数:31,代码来源:Example3.php


注:本文中的pData::setAbscissaLabelSeries方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。