Highcharts 使用 HTML 表格數(shù)據(jù)的柱形圖
以下實(shí)例演示了使用 HTML 表格數(shù)據(jù)的柱形圖。
我們在前面的章節(jié)已經(jīng)了解了 Highcharts 基本配置語法。接下來讓我們來看下其他的配置。在 data 下添加 table 配置。
data
數(shù)據(jù)模塊提供了一些簡單的接口用于添加數(shù)據(jù),我們可以使用例如 CVS, HTML 表格或者網(wǎng)格視圖中的數(shù)據(jù)。
data.table
Html 表格中設(shè)置id,并對應(yīng)參數(shù) data.table 即能解析數(shù)據(jù)。相關(guān)設(shè)置選項(xiàng)有 startRow, endRow, startColumn 和 endColumn 。
data: { table: 'dataTable' }
實(shí)例
文件名:highcharts_column_table.htm
<html> <head> <title>Highcharts 教程 | W3Cschool教程(w3cschool.cn)</title> <script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js" rel="external nofollow" ></script> <script src="http://code.highcharts.com/highcharts.js" rel="external nofollow" ></script> <script src="http://code.highcharts.com/modules/data.js" rel="external nofollow" ></script> </head> <body> <div id="container" style="width: 550px; height: 400px; margin: 0 auto"></div> <script language="JavaScript"> $(document).ready(function() { var data = { table: 'datatable' }; var chart = { type: 'column' }; var title = { text: '從網(wǎng)頁中的 HTML 表格中讀取數(shù)據(jù)' }; var yAxis = { allowDecimals: false, title: { text: 'Units' } }; var tooltip = { formatter: function () { return '<b>' + this.series.name + '</b><br/>' + this.point.y + ' ' + this.point.name.toLowerCase(); } }; var credits = { enabled: false }; var json = {}; json.chart = chart; json.title = title; json.data = data; json.yAxis = yAxis; json.credits = credits; json.tooltip = tooltip; $('#container').highcharts(json); }); </script> <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> <tr><th>Plums</th><td>5</td><td>11</td></tr> <tr><th>Bananas</th><td>1</td><td>1</td></tr> <tr><th>Oranges</th><td>2</td><td>4</td></tr> </tbody> </table> </body> </html>
以上實(shí)例輸出結(jié)果為:
更多建議: