嗨,我正在尝试从 mysql 数据库中检索数据以创建浮点图,任何人都可以指导我完成此过程或让我知道该怎么做谢谢
问问题
30409 次
4 回答
22
你可能想要这样的东西。我没有使用 flot 但我查看了这里的示例。
<?php
//create array of pairs of x and y values
$dataset1 = array();
while ($row = mysql_fetch_assoc()) { //or whatever
$dataset1[] = array( $row['xvalue'], $row['yvalue'] );
}
?>
<script type="text/javascript">
//put array into javascript variable
var dataset1 = <?php echo json_encode($dataset1); ?>;
//plot
$(function () {
$.plot($("#placeholder"), [ dataset1 ]);
});
</script>
于 2009-08-21T14:54:06.533 回答
3
添加来自@Tom Haigh的示例:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Flot Examples</title>
<link href="layout.css" rel="stylesheet" type="text/css">
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../excanvas.min.js"></script><![endif]-->
<script language="javascript" type="text/javascript" src="../jquery.js"></script>
<script language="javascript" type="text/javascript" src="../jquery.flot.js"></script>
</head>
<body>
<h1>Flot Examples</h1>
<div id="placeholder" style="width:600px;height:300px;"></div>
<?php
$server = "localhost";
$user="user";
$password="password";
$database = "some_database";
$connection = mysql_connect($server,$user,$password);
$db = mysql_select_db($database,$connection);
query = "SELECT x_axis_values, y_axis_values FROM some_table";
$result = mysql_query($query);
while($row = mysql_fetch_assoc($result))
{
$dataset1[] = array($row['x_axis_value'],$row['y_axis_value']);
}
?>
<script type="text/javascript">
$(function () {
var dataset1 = <?php echo json_encode($dataset1); ?>;
$.plot($("#placeholder"), [ dataset1 ]);
});
</script>
</body>
</html>
于 2011-11-29T14:54:51.763 回答
2
正如@Tom Haigh 所说的那样工作得很好,但是你需要添加另一个代码才能正常工作,我正在使用这个例子,但我在源代码中发现它添加到结果引号中“所以为了避免这种情况,只需添加:intval 到数组,例如:
<?php
$query = "SELECT valx, valy FROM chart";
$result = mysql_query($query);
while($row = mysql_fetch_assoc($result))
{
$d2[] = array (intval($row['valx']),intval($row['valy']));
}
?>
于 2012-07-26T15:41:08.427 回答
0
这在很大程度上取决于您的环境和要求。有很多免费工具可供您使用。一个例子是Flot,它可以让你使用 jQuery 来构建图表。Google 代码页面上有文档链接。
于 2009-08-21T14:48:39.227 回答