本文整理汇总了PHP中Chart::setGraphAttribute方法的典型用法代码示例。如果您正苦于以下问题:PHP Chart::setGraphAttribute方法的具体用法?PHP Chart::setGraphAttribute怎么用?PHP Chart::setGraphAttribute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Chart
的用法示例。
在下文中一共展示了Chart::setGraphAttribute方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: lookupStatisticsChart
/**
* @Title: lookupStatisticsChart
* @Description: todo(获取图表数据)
* @author 杨东
* @date 2013-8-16 上午9:48:41
* @throws
*/
public function lookupStatisticsChart()
{
import('@.ORG.BaseCharts.Chart');
//引入Chart
// 通过人查询统计数据
$pavlist = F("MisPerformanceStatistics_StatisticsContrast");
//查询单个人员绩效数据
$chart = new Chart();
//创建chart对象
$graphAttribute = array('useRoundEdges' => '1', "showLegend" => '1');
// 默认参数
$chart->setGraphAttribute($graphAttribute);
//调用方法进行设置
if ($_GET['type'] == 'single') {
$chart->setX("planname");
//设置x坐标
$chart->setY("score");
//设置Y坐标
$chart->builderChart(Chart::$SINGLE_SERIES, $pavlist);
//生成图表
} else {
if ($_GET['type'] == 'many') {
$chart->setX("name");
//设置x坐标
$chart->setY("score");
//设置Y坐标
$chart->builderChart(Chart::$SINGLE_SERIES, $pavlist);
//生成图表
} else {
if ($_GET['type'] == 'results') {
$chart->setX("name");
//设置x坐标
$chart->setY("score");
//设置Y坐标
$chart->builderChart(Chart::$SINGLE_SERIES, $pavlist);
//生成图表
}
}
}
}