1
以下JavaScript代碼用於在表格中顯示錶格數據。HTML顯示JavaScript中的數據「數據」
<script type="text/javascript">
$(function() {
$('#container').highcharts({
data: {
table: 'datatable'
},
chart: {
type: 'column'
},
title: {
text: 'Results'
},
yAxis: {
allowDecimals: false,
title: {
text: 'Units'
}
},
tooltip: {
formatter: function() {
return '<b>' + this.series.name + '</b><br/>' +
this.point.y + ' ' + this.point.name.toLowerCase();
}
}
});
});
</script>
HTML代碼保持數據:
<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>
<table id="datatable">
<thead>
<tr>
<th></th>
<th>Jane</th>
<th>John</th>
</tr>
</thead>
<tbody>
<tr>
<th>Apples</th>
<td>3</td>
<td>4</td>
</tr>
<tr>
<th>Pears</th>
<td>2</td>
<td>0</td>
</tr>
</tbody>
</table>
我也有我的HTML以下值:
<div id="name"> </div>
<div id="age"></div>
「名」 和 「時代」 的值不同。我怎樣才能將這些值落實到圖表中而不是數據中:(Jane,John,Apples,Pears)。這可能嗎?
也就是說怎麼樣我的圖表顯示大氣壓的。我可以在圖表上添加「名稱」和「年齡」嗎?
你的名字/年齡裏面是什麼,也表? –