mysql中库名怎么修改啊?
mysql中库名怎么修改啊?
SetScale("textlin"); $graph->img->SetMargin(30,90,40,50); $graph->xaxis->SetFont(FF_FONT1,FS_BOLD); $graph->title->Set("Examples for" name=description>
作者 gmj_1019 发布于 2003-09-02 分类:php基础编程
我下载了jpgraph14,其中还有很多实例。
不过我修改其中实例得一些参数,但是显示效果没有变化。
但是已确定是该页面!
原文件:
<?php
include ("../jpgraph.php");
include ("../jpgraph_line.php");
$ydata = array(11,3,8,12,5,1,9,13,5,7);
// Create the graph. These two calls are always required
$graph = new Graph(350,250,"auto");
$graph->SetScale("textlin");
$graph->img->SetMargin(30,90,40,50);
$graph->xaxis->SetFont(FF_FONT1,FS_BOLD);
$graph->title->Set("Examples for graph");
// Create the linear plot
$lineplot=new LinePlot($ydata);
$lineplot->SetLegend("Test 1");
$lineplot->SetColor("blue");
// Add the plot to the graph
$graph->Add($lineplot);
// Display the graph
$graph->Stroke();
?>
我其中修改了:$graph->title->Set("Examples1 for graph");
但是一点变化都没有,什么原因,谢谢!
逛论坛交流:jpgraph问题
0 条回复
回复