Un contenedor ASP clásico para la API JS de Google Charts
Genere gráficos con la API de Google Charts de forma sencilla.
Fácil de usar:
dim chart
set chart = new GoogleCharts
chart.type = CHART_COLUMN
chart.title = "Friday Night Pizza"
chart.addColumn CTYPE_STRING, "Type"
chart.addColumn CTYPE_NUMBER, "Qty"
chart.addColumn CTYPE_NUMBER, "Price"
chart.addRow Array("Peperony", 2, 1.2)
chart.addRow Array("Marguerita", 1, 3.5)
chart.addRow Array("Bacon", 4, 2.25)
chart.draw
Acepta cargar datos desde matrices bidimensionales, como las proporcionadas por el método GetRows()
de ADODB Recordset
s:
dim chart
set chart = new GoogleCharts
chart.type = CHART_COLUMN
chart.title = "Friday Night Pizza"
chart.addColumn CTYPE_STRING, "Type"
chart.addColumn CTYPE_NUMBER, "Qty"
chart.addColumn CTYPE_NUMBER, "Price"
dim rs
set rs = createObject("ADODB.Recordset")
rs.open "SQL HERE", yourConnection, 0, 1
chart.loadArray rs.getRows()
chart.draw
set rs = nothing
También puede cargar datos desde Recordset
s:
dim chart
set chart = new GoogleCharts
chart.type = CHART_COLUMN
chart.title = "Friday Night Pizza"
dim rs
set rs = createObject("ADODB.Recordset")
rs.open "SQL HERE", yourConnection, 0, 1
' No need to declare columns. It gets the type and label from the `Recordset.Fields` property.
chart.loadRecordSet rs
chart.draw
set rs = nothing
La licencia MIT (MIT) Copyright (c) 2012 RCDMK - rcdmk[arroba]hotmail[punto]com
Por el presente se otorga permiso, sin cargo, a cualquier persona que obtenga una copia de este software y los archivos de documentación asociados (el "Software"), para operar con el Software sin restricciones, incluidos, entre otros, los derechos de uso, copia, modificación, fusión. , publicar, distribuir, sublicenciar y/o vender copias del Software, y permitir que las personas a quienes se les proporciona el Software lo hagan, sujeto a las siguientes condiciones:
El aviso de derechos de autor anterior y este aviso de permiso se incluirán en todas las copias o partes sustanciales del Software. EL SOFTWARE SE PROPORCIONA "TAL CUAL", SIN GARANTÍA DE NINGÚN TIPO, EXPRESA O IMPLÍCITA, INCLUYENDO PERO NO LIMITADO A LAS GARANTÍAS DE COMERCIABILIDAD, IDONEIDAD PARA UN FIN PARTICULAR Y NO INFRACCIÓN. EN NINGÚN CASO LOS AUTORES O TITULARES DE DERECHOS DE AUTOR SERÁN RESPONSABLES DE NINGÚN RECLAMO, DAÑO U OTRA RESPONSABILIDAD, YA SEA EN UNA ACCIÓN CONTRACTUAL, AGRAVIO O DE OTRA MANERA, QUE SURJA DE, FUERA DE O EN RELACIÓN CON EL SOFTWARE O EL USO U OTRAS NEGOCIOS EN EL SOFTWARE.