Foros del Web » Programando para Internet » ASP Clásico »

Crear Array para Grafico de Barras

Estas en el tema de Crear Array para Grafico de Barras en el foro de ASP Clásico en Foros del Web. Buenas amigos de forosdelweb...tengo la siguiente consulta: Necesito crear un grafico de barras..me he mareado con tanto codigo y tantas opciones como el famoso FusionShart,etc... ...
  #1 (permalink)  
Antiguo 17/03/2009, 10:43
 
Fecha de Ingreso: octubre-2007
Mensajes: 191
Antigüedad: 17 años, 6 meses
Puntos: 0
Crear Array para Grafico de Barras

Buenas amigos de forosdelweb...tengo la siguiente consulta:
Necesito crear un grafico de barras..me he mareado con tanto codigo y tantas opciones como el famoso FusionShart,etc...
Entonces tengo este código bajado de una página:

Código ASP:
Ver original
  1. <%
  2. Sub ShowChart(ByRef aValues, ByRef aLabels, ByRef strTitle, ByRef strXAxisLabel, ByRef strYAxisLabel)
  3. ' Some user changable graph defining constants
  4. ' All units are in screen pixels
  5. ' ByRef aValues ( Los valores que tomará el gráfico)
  6. 'ByRef aLabels ( La etiqueta de cada valor)
  7. ' ByRef strTitle ( Título del Gráfico)
  8. ' ByRef strXAxisLabel ( Etiqueta del Eje X )
  9. ' ByRef strYAxisLabelr ( Etiqueta del Eje Y )
  10. strTitle= "GRAFICO DE COMPRAS"
  11. strXAxisLabel="MESES"
  12.  
  13. Const GRAPH_WIDTH = 430 ' El ancho del cuerpo del grafico
  14. Const GRAPH_HEIGHT = 250 ' La altura del cuerpo del grafico
  15. Const GRAPH_BORDER = 1 ' Tamaño de borde negro
  16. Const GRAPH_SPACER = 2 ' Tamaño del espacio entre barras
  17.  
  18. ' Debugging constant so I can eaasily switch on borders in case
  19. ' the tables get messed up. Should be left at zero unless you're
  20. ' trying to figure out which table cells doing what.
  21. Const TABLE_BORDER = 0
  22. 'Const TABLE_BORDER = 10
  23.  
  24. ' Declare our variables
  25. Dim I
  26. Dim iMaxValue
  27. Dim iBarWidth
  28. Dim iBarHeight
  29.  
  30. ' Get the maximum value in the data set
  31. iMaxValue = 0
  32. For I = 0 To UBound(aValues)
  33. If iMaxValue < aValues(I) Then iMaxValue = aValues(I)
  34. Next 'I
  35. 'Response.Write iMaxValue ' Debugging line
  36.  
  37.  
  38. ' Calculate the width of the bars
  39. ' Take the overall width and divide by number of items and round down.
  40. ' I then reduce it by the size of the spacer so the end result
  41. ' should be GRAPH_WIDTH or less!
  42. iBarWidth = (GRAPH_WIDTH \ (UBound(aValues) + 1)) - GRAPH_SPACER
  43. 'Response.Write iBarWidth ' Debugging line
  44.  
  45.  
  46. ' Start drawing the graph
  47. %>
  48.  
  49. <TABLE BORDER="<%= TABLE_BORDER %>" CELLSPACING="0" CELLPADDING="0" align=center>
  50. <TR>
  51. <TD COLSPAN="3" ALIGN="center"><H2><%= strTitle %></H2></TD>
  52. </TR>
  53. <TR>
  54. <TD VALIGN="center"><B><%= strYAxisLabel %></B></TD>
  55. <TD VALIGN="top">
  56. <TABLE BORDER="<%= TABLE_BORDER %>" CELLSPACING="0" CELLPADDING="0">
  57. <TR>
  58. <TD ROWSPAN="2"><IMG SRC="images/spacer.gif" BORDER="0" WIDTH="1" HEIGHT="<%= GRAPH_HEIGHT %>"></TD>
  59. <TD VALIGN="top" ALIGN="right"><%= iMaxValue %>&nbsp;</TD>
  60. </TR>
  61. <TR>
  62. <TD VALIGN="bottom" ALIGN="right">0&nbsp;</TD>
  63. </TR>
  64. </TABLE>
  65. </TD>
  66. <TD>
  67. <TABLE BORDER="<%= TABLE_BORDER %>" CELLSPACING="0" CELLPADDING="0">
  68. <TR>
  69. <TD VALIGN="bottom"><IMG SRC="images/spacer_black.gif" BORDER="0" WIDTH="<%= GRAPH_BORDER %>" HEIGHT="<%= GRAPH_HEIGHT %>"></TD>
  70. <%
  71. ' We're now in the body of the chart. Loop through the data showing the bars!
  72. For I = 0 To UBound(aValues)
  73. iBarHeight = Int((aValues(I) / iMaxValue) * GRAPH_HEIGHT)
  74.  
  75. ' This is a hack since browsers ignore a 0 as an image dimension!
  76. If iBarHeight = 0 Then iBarHeight = 1
  77. %>
  78. <TD VALIGN="bottom"><IMG SRC="images/spacer.gif" BORDER="0" WIDTH="<%= GRAPH_SPACER %>" HEIGHT="1"></TD>
  79. <TD VALIGN="bottom"><IMG SRC="images/spacer_red.gif" BORDER="0" WIDTH="<%= iBarWidth %>" HEIGHT="<%= iBarHeight %>" ALT="<%= aValues(I) %>"></A></TD>
  80. <%
  81. Next 'I
  82. %>
  83. </TR>
  84. <!-- I was using GRAPH_BORDER + GRAPH_WIDTH but it was moving the last x axis label -->
  85. <TR>
  86. <TD COLSPAN="<%= (2 * (UBound(aValues) + 1)) + 1 %>"><IMG SRC="images/spacer_black.gif" BORDER="0" WIDTH="<%= GRAPH_BORDER + ((UBound(aValues) + 1) * (iBarWidth + GRAPH_SPACER)) %>" HEIGHT="<%= GRAPH_BORDER %>"></TD>
  87. </TR>
  88. <% ' The label array is optional and is really only useful for small data sets with very short labels! %>
  89. <% If IsArray(aLabels) Then %>
  90. <TR>
  91. <TD><!-- Spacing for Left Border Column --></TD>
  92. <% For I = 0 To UBound(aValues) %>
  93. <TD><!-- Spacing for Spacer Column --></TD>
  94. <TD ALIGN="center"><FONT SIZE="1"><%= aLabels(I) %></FONT></TD>
  95. <% Next 'I %>
  96. </TR>
  97. <% End If %>
  98. </TABLE>
  99. </TD>
  100. </TR>
  101. <TR>
  102. <TD COLSPAN="2"><!-- Place holder for X Axis label centering--></TD>
  103. <TD ALIGN="center"><BR><B><%= strXAxisLabel %></B></TD>
  104. </TR>
  105. </TABLE>
  106. <%
  107. End Sub
  108. %>
  109. <%
  110. ' Static Chart (with Bar Labels)
  111. ShowChart Array(6, 10, 12, 18, 23, 26, 27, 28, 30, 34, 37, 45), Array("Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"), "COMPRAS POR MESES", "X Label", "$"
  112. %>

El problema que tengo es que necesito reemplazar la última línea donde dice "ShowChart Array" para construir un array con los valores sacados de mi base de datos...pero la verdad es que no se como crear el array.....alguien podria ayudarme por favor???
La consulta SQL que tengo que incluirle es esta:

Código PHP:
SELECT SUM(total) AS TOTAL,DATENAME(MONTH,fecha) AS MES FROM FACPVTA
WHERE YEAR
(fecha) ='2009'
GROUP BY DATENAME(MONTH,fecha

De antemano muchas gracias..
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 22:15.