<cfchartseries>
Used with the <cfchart> and <cfchartdata> tags. This tag defines a series.
This tag may have a body.
This tag is also supported within <cfscript>
Requires Extension: Chart Extension
<cfchartseries
colorlist=string
itemcolumn=string
markerstyle=string
paintstyle=string
query=any
seriescolor=string
serieslabel=string
type=string
valuecolumn=string
datalabelstyle=string
><!--- body --->[</cfchartseries>]
Attribute | Description |
---|---|
colorlist
string, optional
|
Applies if chartseries type attribute = "pie". Sets pie slice colors. Comma-delimited list of hex values or supported, named web colors; see name list in the <cfchart> Usage section. For a hex value, use the form "##xxxxxx", where x = 0-9 or A-F; use two pound signs or none. |
itemcolumn
string, optional
|
Name of a column in the query specified in the query attribute; contains the item label for a data point to graph. |
markerstyle
string, optional
|
Applies to chartseries type attribute values line, curve and scatter, and show3D attribute value no. |
paintstyle
string, optional
|
Sets the paint display style of the data series. |
query
any, optional
|
Name of CFML query from which to get data. |
seriescolor
string, optional
|
Color of the main element (such as the bars) of a chart. For a pie chart, the color of the first slice. Hex value or supported named color; see name list in the <cfchart> Usage section. For a hex value, use the form "##xxxxxx", where x = 0-9 or A-F; use two pound signs or none. |
serieslabel
string, optional
|
Text of data series label |
type
string, required
|
Sets the chart display style |
valuecolumn
string, optional
|
Name of a column in the query specified in the query attribute; contains data values to graph. |
datalabelstyle
string, optional
|
Specifies the way in which the color is applied to the item in the series:
|
Examples
Chartseries Example
<cfchart format="jpg" title="Sales Result" backgroundcolor="magenta" showborder="true">
<cfchartseries type="bar" paintstyle="light">
<cfchartdata item="2016" value="100">
<cfchartdata item="2017" value="300">
<cfchartdata item="2018" value="500">
<cfchartdata item="2019" value="700">
</cfchartseries>
</cfchart>
See also
- <cfchart>
- <cfchartdata>
- Search Issue Tracker
- Search Lucee Test Cases (good for further, detailed examples)