Mostrando datos de forma bonita

Google a través de su Visualization API Gadget Gallery nos ofrece unas librerías JavaScript con las que podemos mostrar fácilmente los datos de una manera mucho mas amigable al usuarios.

Son ideales para aplicaciones de Business Intelligence. Como muestra un botón:

//


El código fuente del ejemplo (copiado de la documentación del API)

[javascript]
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
// Load the Visualization API and the piechart package.
google.load(‘visualization’, ’1′, {‘packages’:['piechart']});
// Set a callback to run when the API is loaded.
google.setOnLoadCallback(drawChart);
// Callback that creates and populates a data table,
// instantiates the pie chart, passes in the data and
// draws it.
function drawChart() {
var data = new google.visualization.DataTable();
data.addColumn(‘string’, ‘Task’);
data.addColumn(‘number’, ‘Hours per Day’);
data.addRows([
['Work', 11],
['Eat', 2],
['Commute', 2],
['Watch TV', 2],
['Sleep', 7]
]);
var chart = new google.visualization.PieChart(document.getElementById(‘chart_div’));
chart.draw(data, {width: 400, height: 240, is3D: true, title: ‘My Daily Activities’});
}
</script>
<div id="chart_div"></div>
[/javascript]

Advertisement

Acerca de francho

Geek Maño. Artesano de software, programador Android en activo, sysop retirado. Linuxero de corazón, maquero recién convertido. Ocasionalmente: consultor de Internet, profesor... Más en francho.org

Publicado el 5 julio, 2009 en Docs y etiquetado en , , . Guarda el enlace permanente. Dejar un comentario.

Deja un comentario

Fill in your details below or click an icon to log in:

Gravatar
Logo de WordPress.com

Please log in to WordPress.com to post a comment to your blog.

Twitter picture

You are commenting using your Twitter account. Log Out / Cambiar )

Facebook photo

You are commenting using your Facebook account. Log Out / Cambiar )

Connecting to %s

Seguir

Get every new post delivered to your Inbox.

Únete a otros 453 seguidores