Copy link to clipboard
Copied
I was wondering is there a way to show chart point values so that the values always show instead of just on mouseover? Right now I'm using cfchart and having it render as a Flash movie. Here's my code below.
<cfchart
format="flash"
scalefrom="500"
scaleto="5000"
show3D="No"
chartWidth="750"
chartHeight="300"
labelFormat = "currency"
showmarkers="yes"
title = "Funding"
yAxisTitle = "Dollars"
xAxisTitle="Year"
markerSize = "5">
<cfchartseries
type="line"
paintStyle="light"
serieslabel="Funding"
seriescolor="0f7196">
<cfchartdata item="2006 - 07" value="3983">
<cfchartdata item="2007 - 08" value="3670">
<cfchartdata item="2008 - 09" value="3070">
<cfchartdata item="2009 - 10" value="2703">
</cfchartseries>
</cfchart>
Copy link to clipboard
Copied
http://www.coldfusionjedi.com/index.cfm/2009/3/6/Ask-a-Jedi-Showing-the-values-on-a-chart