Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
sviolet #1
Problems Charting multiple data collections
I have created a dynamic bar chart based on what the user selects (Species ) on
form. I have trouble when the user select more than one species to chart. The
chart that is produced when they select more than one species is for the last
species they selected from the list. I would like all the species they select
to be represented.
What I would like:
x axis - bird count
y axis - year
stacked bar representing count for each year for all species selected.
My current code on the action page:
<cfquery name="MakeBarChart" datasource="bsc">
Select *
From Calculated
Where SiteCode IN (#ListQualify(form.SiteCode, "'", ",", "All")#)
And Speciesdesc IN (#ListQualify(form.SpeciesDesc, "'", ",", "All")#)
order by BirdYear
</cfquery>
<CFCHART
FORMAT="flash"
SHOWYGRIDLINES="yes"
xAxisTitle="Year"
yAxisTitle="Count"
SCALETO="13"
SCALEFROM="1"
SHOW3D="yes"
GRIDLINES="5">
<cfchartseries
type="bar"
query="MakeBarChart"
valueColumn="TotalperSpecies"
itemColumn="BirdYear">
</CFCHART>
sviolet Guest
-
XML data in charting
OK so I have come across a number of simple examples and they all do just what i would like to do and they are all very very few lines of code.... -
Verity collections shared between multiple instances
I'm setting up a CF7 server, and using multiple instances. Datasources, scheduled jobs, etc. all are isolated to each instance, as you'd expect.... -
Charting Multiple Selections in dataGrid
I'm stumped. I want my chart to add a series for each row selected from a corresponding dataGrid. I've used the Series Selection example (under... -
Multiple Verity collections produce out of memory errorin CFMX 7
I am unable to migrate the 250+ verity collections that we had using CFMX 6.1. Since the migration did not work, I tried creating the collections... -
charting data
Hi All, Wondering if anyone can recommend a good 3rd party tool for charting gathered data, prefereably outputting to a gif/png web page.. ...



Reply With Quote

