我正在使用 googlecharts 插件来生成柱形图。
我还想获得 td 中存在的值的平均值。是否可以通过谷歌图表插件或者任何人都可以帮助我编写 ajquery 来计算平均值。计算平均值后,我需要将其添加到“avg”类的段落标签中。谢谢您的帮助。
我的代码是:
<table id="weather">
<thead>
<tr>
<th></th>
<th>Mar</th>
<th>Apr</th>
<th>May</th>
<th>Jun</th>
<th>Jul</th>
<th>Aug</th>
</tr>
</thead>
<tbody>
<tr>
<th>Weather</th>
<td>20</td>
<td>22</td>
<td>18</td>
<td>24</td>
<td>20</td>
<td>22</td>
</tr>
</tbody>
</table>
和javascript代码:
<script type="text/javascript">
gvChartInit();
$(document).ready(function(){
$('#weather').gvChart({
chartType: 'ColumnChart',
gvSettings: {
width: 100,
height: 40,
colors:['gray'],
hAxis: {textPosition: 'none'},
vAxis: {minValue: 0, textPosition: 'none', gridlines: {color: '#ffffff'}},
legend: {position: 'none'}
}
});
</script>