Using A ColdFusion Structure To Create A Chart
I needed to create a chart showing our meeting registrations. Previously, I was just listing the numbers. However, the CFC function that provided me the data I was using to just list the numbers was a structure where the keys were the meeting codes and the values for the keys were the number of people registered.
At first I thought I would have to build another CFC function to return a query with a count of each meeting's registrations to use the cfchartseries tag's query attribute. But after thinking and experimenting a bit I figured out a way to use the structure I already had as the basis for the chart.