|
|
|
อยากให้กราฟสีไม่เหมือนกันทำได้ไหมครับ ด้วยกราฟ FusionCharts ครับ (ยังทำไม่เป็นครับ) |
|
|
|
|
|
|
|
จากรูปครับ เราสามารถให้ กราฟนี้ สีละแท่งได้ไหมครับ กับ ทำไมตัวหนังสือถึงตัวเล็กจังครับ
เพราะผมใช้แบบเรียกจากฐานข้อมูลมาอะครับ
Code (PHP)
<?php
include("FusionCharts.php");
require ('connect.php');
?>
<HTML>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<HEAD>
<TITLE>FusionCharts Free - Database Example</TITLE>
<SCRIPT LANGUAGE="Javascript" SRC="FusionCharts.js"></SCRIPT>
</HEAD>
<BODY>
<FONT Size="5">
<CENTER>
<?php
$strXML = "<graph caption='กราฟแสดงงบประมาณ' subCaption='แยกตามหมวดหมู่' decimalPrecision='0' showNames='1' numberSuffix=' บาท' pieSliceDepth='30' formatNumberScale='0'>";
$strQuery = "SELECT tbbudgetyear.BudgetyearID, Budgetyear, Budgettype, Budgetcategoryamount
FROM tbbudgetyear, tbbudgetcategory, tbbudgettype
WHERE tbbudgetyear.BudgetyearID = tbbudgetcategory.BudgetyearID
AND tbbudgettype.BudgettypeID = tbbudgetcategory.BudgettypeID";
$result = mysql_query($strQuery) or die(mysql_error());
if ($result) {
while($ors = mysql_fetch_array($result)) {
$strXML .= "<set name='" . $ors['Budgettype'] . "' value='" . $ors['Budgetcategoryamount'] . "' color='0000FF'/>";
}
}
//Finally, close <graph> element
$strXML .= "</graph>";
//Create the chart - Pie 3D Chart with data from $strXML
echo renderChart("FusionCharts/Charts/FCF_Column3D.swf", "", $strXML, "FactorySum", 1000, 600);
?>
</FONT>
</BODY>
</HTML>
Tag : PHP, HTML/CSS, JavaScript, Report Others
|
ประวัติการแก้ไข 2014-07-26 22:53:08 2014-07-26 23:08:16 2014-07-27 10:38:16 2014-07-27 11:04:48 2014-07-27 11:41:32
|
|
|
|
|
Date :
2014-07-26 22:52:02 |
By :
nest12345 |
View :
2116 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ชื้อมาเท่าใหร่ครับ รุ่นเอนเตอไพรช์
|
|
|
|
|
Date :
2014-07-27 00:36:10 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|