Highcharts - Gráfico de colunas usando tabela HTML
A seguir está um exemplo de um Gráfico de colunas usando uma tabela HTML.
Já vimos a configuração usada para desenhar um gráfico no capítulo Highcharts Configuration Syntax . Vamos agora ver as configurações adicionais e também como adicionamos a tabela aos dados.
Um exemplo de Gráfico de colunas usando a tabela HTML é fornecido abaixo.
dados
O módulo de dados fornece uma interface simplificada para adicionar dados a um gráfico de fontes como CVS, tabelas HTML ou visualizações de grade.
Tabela de dados
Uma tabela HTML ou a id de tal deve ser analisada como dados de entrada. As opções relacionadas são startRow, endRow, startColumn e endColumn para delimitar que parte da tabela é usada.
data: {
table: 'dataTable'
}
Exemplo
highcharts_column_table.htm
<html>
<head>
<title>Highcharts Tutorial</title>
<script src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
</script>
<script src = "https://code.highcharts.com/highcharts.js"></script>
<script src = "https://code.highcharts.com/modules/data.js"></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: 'Data extracted from a HTML table in the page'
};
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>
Resultado
Verifique o resultado.