Whatever message this page gives is out now! Go check it out!
Tag | Description |
Specifies the container in which the chart appears. This container defines the height, width, background color, labels, fonts, and other characteristics of the chart. Include at least one cfchartseries tag within the cfchart tag. | |
cfchartseries{{}} | Specifies a database query that supplies the data to the chart and one or more cfchartdata tags that specify individual data points. Specifies the chart type, colors for the chart, and other optional attributes. |
cfchartdata{{}} | Optionally specifies an individual data point to the cfchartseries tag. |
<cfchartseries type="type"> <cfchartdata item="something" value="number"> </cfchartseries> </chart> |
<cfchartseries type="pie"> <cfchartdata item="New car sales" value="50000"> <cfchartdata item="Used car sales" value="25000"> <cfchartdata item="Leasing" value="30000"> <cfchartdata item="Service" value="40000"> </cfchartseries> </cfchart> |