Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > PHP > PHP Forum > จะดึงข้อมูลจาก MySQL มาแสดงที่ Google Chart แบบ Stack Chart ทำยังไงครับ



 

จะดึงข้อมูลจาก MySQL มาแสดงที่ Google Chart แบบ Stack Chart ทำยังไงครับ

 



Topic : 110515



โพสกระทู้ ( 190 )
บทความ ( 0 )



สถานะออฟไลน์




ผมอยากแสดงข้อมูลแบบ stack chart แต่ไม่รู้จะสร้างดาต้าเบสยังไงพอจะมีตัวอย่างบ้างมัยครับ ที่ผมลองดูพอ echo ข้อมูลจากดาต้าเบสที่ผมสร้างขึ้นเพื่อทดลองเป็น json จะได้ข้อมูลแบบนี้ครับ
Code
{"cols":[{"label":"Weekly Task","type":"string"},{"label":"Percentage","type":"number"}],"rows":[{"c":[{"v":"name1"},{"v":100000}]},{"c":[{"v":"name2"},{"v":120000}]}]}


แต่ข้อมูลที่สามารถสร้าง stack chart ได้ต้องมีรูปแบบเป็นแบบนี้

Code
[["Stores", "Store 1", "Store 2"],
["Morning", 10, 24],
["Noon", 16, 22],
["Night", 28, 19]]


ไม่ทราบว่าต้องเขียนยังไงถึงจะสร้าง stack chart ด้วย google chart ได้ครับ ผมสามารถดึงข้อมูลจาก MySQL มาแสดงกราฟแท่งได้แล้วตามโค้ดนี้ แต่ต้องการแสดงเปน stack chart ไม่ทราบว่าต้องแก้ยังไงครับ

Code
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html;charset=utf-8" >

    <!--Load the Ajax API-->
    <script type="text/javascript" src="https://www.google.com/jsapi"></script>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>

<?php
$con=mysql_connect("localhost","root","1234") or die("Failed to connect with database!!!!");
mysql_select_db("chart", $con);
mysql_query("SET character_set_results=utf8");
mysql_query("SET character_set_client=utf8");
mysql_query("SET character_set_connection=utf8");

// The Chart table contains two fields: weekly_task and percentage
// This example will display a pie chart. If you need other charts such as a Bar chart, you will need to modify the code a little to make it work with bar chart and other charts
$sth = mysql_query("SELECT name, budget FROM personal");
/*if (!$sth) {
    die("Error: ".mysql_error()); // Note: raw database errors are useless for users
                                  // better log the error an create a "nice" error page
} */

$rows = array();
//flag is not needed
$flag = true;
$table = array();
$table['cols'] = array(

    // Labels for your chart, these represent the column titles
    // Note that one column is in "string" format and another one is in "number" format as pie chart only required "numbers" for calculating percentage and string will be used for column title
    array('label' => 'Weekly Task', 'type' => 'string'),
    array('label' => 'Percentage', 'type' => 'number')

);

$rows = array();
while($r = mysql_fetch_assoc($sth)) {
    $temp = array();
    // the following line will be used to slice the Pie chart
    $temp[] = array('v' => (string) $r['name']);

    // Values of each slice
    $temp[] = array('v' => (int) $r['budget']);
    $rows[] = array('c' => $temp);
}

$table['rows'] = $rows;
$jsonTable = json_encode($table);
echo $jsonTable;
?>

    <script type="text/javascript">

    // Load the Visualization API and the piechart package.
    google.load('visualization', '1', {'packages':['corechart']});

    // Set a callback to run when the Google Visualization API is loaded.
    google.setOnLoadCallback(drawChart);

    function drawChart() {

      // Create our data table out of JSON data loaded from server.
      var data = google.visualization.arrayToDataTable(<?=$jsonTable?>);
      
      
      var options = {
           title: 'My Weekly Plan',
          is3D: 'true',
          width: 800,
          height: 600,
isStacked: true
        };
      // Instantiate and draw our chart, passing in some options.
      // Do not forget to check your div ID
      var chart = new google.visualization.ColumnChart(document.getElementById('chart_div'));
      chart.draw(data, options);
    }
    </script>
  </head>

  <body>
    <!--this is the div that will hold the pie chart-->
    <div id="chart_div"></div>
  </body>
</html> 




Tag : PHP, MySQL, JavaScript, Ajax







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2014-08-09 00:57:49 By : mmc01 View : 2913 Reply : 1
 

 

No. 1



โพสกระทู้ ( 455 )
บทความ ( 0 )



สถานะออฟไลน์


ผมยกตัวอย่าง มา 2 script ลองไปดัดแปลงดูนะครับ

Code (PHP)
<?php
$arr1 = array();
for($i=0;$i<=2;$i++){
	
	$arr2 = array();
	for($q=0;$q<=2;$q++){
		$arr2[] = "test".$q;
	}
	$arr1[] = $arr2;
}
echo json_encode($arr1);
?>


หรือ

Code (PHP)
<?php
$arr1 = array();
for($i=0;$i<=2;$i++){
	
	$arr1[] = array("test","test","test");
}
echo json_encode($arr1);
?>









ประวัติการแก้ไข
2014-08-09 08:13:01
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-08-09 08:10:10 By : yamcrocodile
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : จะดึงข้อมูลจาก MySQL มาแสดงที่ Google Chart แบบ Stack Chart ทำยังไงครับ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 04
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่