ColdFusion 9.0 Resources |
Charting dataOne of the most important considerations when you chart data is the way that you supply the data to the cfchart tag. You can supply data in the following ways:
Note: The cfchart tag charts numeric
data only. As a result, convert any dates, times, or preformatted
currency values, such as $3,000.53, to integers or real numbers.
Charting individual data pointsWhen you chart individual data points, you specify each data point by inserting a cfchartdata tag in the cfchartseries tag body. For example, the following code creates a simple pie chart: <cfchart> <cfchartseries type="pie"> <cfchartdata item="New Vehicle Sales" value=500000> <cfchartdata item="Used Vehicle Sales" value=250000> <cfchartdata item="Leasing" value=300000> <cfchartdata item="Service" value=400000> </cfchartseries> </cfchart> This pie chart displays four types of revenue for a car dealer. Each cfchartdata tag specifies the income for a department and a description for the legend. Note: If two data points have the same item name,
ColdFusion creates a graph of the value for the last one specified
within the cfchart tag.
The cfchartdata tag lets you specify the following information about a data point:
Charting a queryEach bar, dot, line, or slice of a chart represents data from one row/column coordinate in your result set. A related group of data is called a chart series. Because each bar, dot, line, or slice represents the intersection of two axes, craft the query result set such that the row and column values have meaning when displayed in a chart. Often, doing so requires you aggregate data in the query. You typically aggregate data in a query using one of the following:
When you chart a query, you specify the query name using the query attribute of the cfchartseries tag. For example, the code for a simple bar chart could be as follows: <cfchart xAxisTitle="Department" yAxisTitle="Salary Average" > <cfchartseries type="bar" query="DataTable" valueColumn="AvgByDept" itemColumn="Dept_Name" /> </cfchart> This example displays the values in the AvgByDept column of the DataTable query. It displays the Dept_Name column value as the item label by each bar. The following table lists the attributes of the cfchartseries tag that you use when working with queries:
Charting a query of queriesIn addition to charting the results of a query, you can also chart the results of a query of queries. For more information about using query of queries, see Using Query of Queries. Query of queries provides significant power in generating the data for the chart. For example, you can use aggregating functions such as SUM, AVG, and GROUP BY to create a query of queries with statistical data based on a raw database query. For more information, see Using Query of Queries. You can also take advantage of the ability to dynamically reference and modify query data. For example, you can loop through the entries in a query column and reformat the data to show whole dollar values. The example in the following procedure analyzes the salary data in the cfdocexamples database using a query of queries, and displays the data as a bar chart.
Note: If a query contains two rows with the same value
for the itemColumn attribute, ColdFusion graphs the last row in the query for that value. For the preceding example, if the query contains two rows for the Sales department, ColdFusion graphs the value for the last row in the query for Sales.
Reviewing the codeThe following table describes the code and its function:
You can also rewrite this example to use the cfoutput and cfchartdata tags within the cfchartseries tag, instead of using the loop, to round the salary data, as the following code shows: <cfchartseries type="bar" seriesColor="olive" paintStyle="plain"> <cfoutput query="deptSalaries"> <cfchartdata item="#dept_name#" value=#Round(AvgByDept/1000)*1000#> </cfoutput> </cfchartseries> Combining a query and data pointsTo chart data from both query and individual data values, you specify the query name and related attributes in the cfchartseries tag, and provide additional data points by using the cfchartdata tag. ColdFusion displays the chart data specified by a cfchartdata tag before the data from a query, for example, to the left on a bar chart. You can use the sortXAxis attribute of the cfchart tag to sort data alphabetically along the x axis. One use of combining queries and data points is to provide data that is missing from the database; for example, to provide the data for one department if the data for that department is missing. The example in the following procedure adds data for the Facilities and Documentation departments to the salary data obtained from the query shown in the previous section:
Charting multiple data collectionsSometimes, you could have more than one series of data to display on a single chart, or you want to compare two sets of data on the same chart. In some cases, you might want to use different charting types on the same chart. For example, you could include a line chart on a bar chart. To combine multiple data series into a single chart, insert multiple cfchartseries tags within a single cfchart tag. You control how the multiple data collections are charted using the seriesPlacement attribute of the cfchart tag. Using this attribute, you can specify the following options:
The following image shows these options for combining two bar charts: You can also combine chart types. The following is a combination bar and line chart: The only chart type that you cannot mix with others is the pie chart. If you define one of the data series to use a pie chart, no other chart appears. The example in the following procedure creates the chart in the previous figure, which shows a bar chart with a line chart added to it. In this example, you chart the salary of permanent employees (bar) against contract employees (line). Note: The layering of multiple series depends on the
order that you specify the cfchartseries tags.
For example, if you specify a bar chart first and a line chart second,
the bar chart appears in front of the line chart in the final chart.
Create a combination bar chart and line chart
|