I've written a jsp that retrieves data from a sybase table via the sql
JSTL. Two colums of data are returned, date and value. Currently the
data is placed in an HTML table.
Does anyone know of a simple component that can put this on a simple
line chart/graph?
I'm hoping for a very simple solution in the area of a chart tag and
the use of 2 arrays, 1 to hold the dates, 1 to hold the values.
Maybe...
<xyx:chart
type="line"
bgcolor="white"
linecolor="red"
...
<xyx:data>
@array1, @array2
</xyx:data>
</xyz:chart>