项目作者: rcdmk

项目描述 :
A classic ASP wrapper for the Google Charts JS API
高级语言: ASP
项目地址: git://github.com/rcdmk/ASPGoogleCharts.git
创建时间: 2015-05-12T14:15:18Z
项目社区:https://github.com/rcdmk/ASPGoogleCharts

开源协议:MIT License

下载


ASP GoogleCharts v1.0

A classic ASP wrapper for the Google Charts JS API

Generate charts with Google Charts API in an easy way.

Simple to use:

  1. dim chart
  2. set chart = new GoogleCharts
  3. chart.type = CHART_COLUMN
  4. chart.title = "Friday Night Pizza"
  5. chart.addColumn CTYPE_STRING, "Type"
  6. chart.addColumn CTYPE_NUMBER, "Qty"
  7. chart.addColumn CTYPE_NUMBER, "Price"
  8. chart.addRow Array("Peperony", 2, 1.2)
  9. chart.addRow Array("Marguerita", 1, 3.5)
  10. chart.addRow Array("Bacon", 4, 2.25)
  11. chart.draw

Accepts loading data from bidimensional arrays, like the ones provided from the GetRows() method of ADODB Recordsets:

  1. dim chart
  2. set chart = new GoogleCharts
  3. chart.type = CHART_COLUMN
  4. chart.title = "Friday Night Pizza"
  5. chart.addColumn CTYPE_STRING, "Type"
  6. chart.addColumn CTYPE_NUMBER, "Qty"
  7. chart.addColumn CTYPE_NUMBER, "Price"
  8. dim rs
  9. set rs = createObject("ADODB.Recordset")
  10. rs.open "SQL HERE", yourConnection, 0, 1
  11. chart.loadArray rs.getRows()
  12. chart.draw
  13. set rs = nothing

It can also load data from Recordsets:

  1. dim chart
  2. set chart = new GoogleCharts
  3. chart.type = CHART_COLUMN
  4. chart.title = "Friday Night Pizza"
  5. dim rs
  6. set rs = createObject("ADODB.Recordset")
  7. rs.open "SQL HERE", yourConnection, 0, 1
  8. ' No need to declare columns. It gets the type and label from the `Recordset.Fields` property.
  9. chart.loadRecordSet rs
  10. chart.draw
  11. set rs = nothing

Licence

The MIT License (MIT)
Copyright (c) 2012 RCDMK - rcdmk[at]hotmail[dot]com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.