我试图找到一个解释清楚的例子或至少一个定义,但没有运气。所以基本上我有一个数据表,我想从中获取一些值并使用 jquery high-chart 显示它。到目前为止,我有这个:
<?php
include("connect.php"); //script for connecting to database and defining the $connection
$query = "SELECT * FROM meetings";
$result = mysql_query($query, $connection);
$numberOfMeetings = 25; //this is mocked here so you can better understand the code
echo '<table>
<tbody>';
while ($row = mysql_fetch_array($result)) {
echo '<tr>';
echo '<td>' . $row['memberName'] . '</td>';
echo '<td>' . ($row['timesPresent'] / $numberOfMeetings) * 100 . '%</td>';
echo '</tr>';
}
?>
我得到一个漂亮的简单表格,有很多行和 2 列。第一列显示成员的姓名,第二列显示他出席会议的次数百分比。
我现在的问题是我有这个数据表和那些值(如果需要,我总是可以将值放入数组中)我如何在小提琴上这样显示它:http: //jsfiddle.net/uDrQq/3/
我不知何故需要将类别和数据从 php 值传递给 jquery 代码,但是如何?