在另一个页面中呈现 TeeChart for PHP



我是 PHP TeeChart 的新手。

我找到的所有示例都在创建图表的同一 php 文件上渲染图表。

我想使用 PHP 脚本构建图表,该脚本通过 AJAX 接收一些参数,并在生成 AJAX 调用的页面上呈现图表。

这可能吗?有什么例子吗?

此致敬意。

杰米·杰夫曼

这里有一个简单的例子:

获取图表.php:

<?php
  // get the q parameter from URL
$q = $_REQUEST["q"];

//Includes
include "../../sources/TChart.php";
$chart1 = new TChart(600,450);
$chart1->getChart()->getHeader()->setText($q);
$chart1->getAspect()->setView3D(false);
$line1 = new Line($chart1->getChart());
$line1->setColor(Color::RED());
$chart1->addSeries($line1);
// Speed optimization
$chart1->getChart()->setAutoRepaint(false);
for($t = 0; $t <= 10; ++$t) {
  $line1->addXY($t, (10 + $t), Color::RED());
}
$chart1->getChart()->setAutoRepaint(true);
$chart1->render("chart1.png");    
$rand=rand();
echo "chart1.png?rand=".$rand;
?>

测试.html:

<!DOCTYPE html>
<html>
<head>
<script>
function showChart(str) {
    var xmlhttp = new XMLHttpRequest();
    xmlhttp.onreadystatechange = function() {
        if (this.readyState == 4 && this.status == 200) {           
            var image = document.getElementById("get_img");
            image.src = xmlhttp.responseText;
        }
    }
    xmlhttp.open("GET", "getchart.php?q="+str, true);
    xmlhttp.send();
} 
</script>
</head>
<body>
<p><b>Enter the chart title below:</b></p>
<form>
Chart title: <input type="text" onkeyup="showChart(this.value)">
</form>
<p><img id="get_img" /></p>
</body>
</html>

相关内容

  • 没有找到相关文章

最新更新