One 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:
- Specify individual data points by using cfchartdata tags.
- Provide all the data in a single query by using cfchartseries tags.
- Combine data from a query with additional data points from cfchartdata tags.
- Provide all the data in a report created with Report Builder. For more information, see Creating Reports and Documents for Printing.
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 points
When 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> |
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:
Attribute |
Description |
---|---|
value |
The data value to chart. This attribute is required. |
item |
(Optional) The description for this data point. The item appears on the horizontal axis of bar and line charts, on the vertical axis of horizontal bar charts, and in the legend of pie charts. |
Charting a query
Each 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:
- Specify a SQL aggregate function (SUM, AVG, MAX, and so on) using a GROUP BY clause in the SELECT statement.
- Use a Query of Queries.
- Retrieve data from a view, instead of a table.
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 |
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:
Attribute |
Description |
---|---|
query |
The query that contains the data. Also specify the valueColumn and itemColumn. |
valueColumn |
The query column that contains the values to chart. |
itemColumn |
The query column that contains the description for this data point. The item normally appears on the horizontal axis of bar and line charts, on the vertical axis of horizontalbar charts, and in the legend in pie charts. |
Charting a query of queries
In 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.
Create a ColdFusion page with the following content:
<!--- Get the raw data from the database. --->
<cfquery name="GetSalaries" datasource="cfdocexamples">
SELECT Departmt.Dept_Name,
Employee.Salary
FROM Departmt, Employee
WHERE Departmt.Dept_ID = Employee.Dept_ID
</cfquery>
<!--- Generate a query with statistical data for each department. --->
<cfquery dbtype = "query" name = "DeptSalaries">
SELECT
Dept_Name,
AVG(Salary) AS AvgByDept
FROM GetSalaries
GROUP BY Dept_Name
</cfquery>
<!--- Reformat the generated numbers to show only thousands. --->
<cfloop index="i" from="1" to="#DeptSalaries.RecordCount#">
<cfset DeptSalaries.AvgByDept[i]=
Round(DeptSalaries.AvgByDept[i]/1000)*1000>
</cfloop>
<html>
<head>
<title>Employee Salary Analysis</title>
</head>
<body>
<h1>Employee Salary Analysis</h1>
<!--- Bar chart, from DeptSalaries Query of Queries. --->
<cfchart
xAxisTitle="Department"
yAxisTitle="Salary Average"
font="Arial"
gridlines=6
showXGridlines="yes"
showYGridlines="yes"
showborder="yes"
show3d="yes"
>
<cfchartseries
type="bar"
query="DeptSalaries"
valueColumn="AvgByDept"
itemColumn="Dept_Name"
seriesColor="olive"
paintStyle="plain"
/>
</cfchart>
<br>
</body>
</html>- Save the page as chartdata.cfm in the myapps directory under the web root directory. For example, the directory path in Windows could be C:\Inetpub\wwwroot\myapps.
- Return to your browser and enter the following URL to view the chartdata.cfm page:*http://localhost/myapps/chartdata.cfm*
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._ |