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");
						
barlinepyramidareahorizontalbarconecurvecylinderstepscatterpieplainplainraiseshadelightrectanglerectangletrianglediamondcirclelettermcrosssnowrcrossnonevaluerowlabelcolumnlabelpatternA 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.