Used with the cfchart tag. This tag defines the style in which
chart data displays: bar, line, pie, and so on.
<cfchartseries type="bar">
cfchartseries(type="bar");
bar
line
pyramid
area
horizontalbar
cone
curve
cylinder
step
scatter
pie
plain
plain
raise
shade
light
rectangle
rectangle
triangle
diamond
circle
letter
mcross
snow
rcross
none
value
rowlabel
columnlabel
pattern
A Simple area chart with hard coded data.
<cfchart xAxisTitle="Subject" yAxisTitle="Marks">
<cfchartseries type="area" seriescolor ="##ccc">
<cfchartdata item="Tamil" value="80">
<cfchartdata item="English" value="85">
<cfchartdata item="Maths" value="95">
<cfchartdata item="Science" value="88">
</cfchartseries>
</cfchart>
Signup for cfbreak
to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.