Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
ClayD #1
Creating A Pie Chart
I'm trying to create a Pie Chart. The whole of the Pie Chart will be the
total number of surveys, TOTAL. I would then like to cut out the remaining
surveys, REMAINING. Both are in my query, but for the life of me I can not
figure out why the chart will not produce properly.
<cfquery name="remainingpercent" datasource="survey">
SELECT SUM(RemainingSurveys) AS Remaining, SUM(TotalSurveys) As Total
FROM Departments
</cfquery>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<cfoutput>
<cfchart
chartwidth="400"
chartheight="400">
<cfchartseries
type="pie"
query="remainingpercent"
valuecolumn="Total"
itemcolumn="Remaining">
</cfchart>
ClayD Guest
-
stacked Bar chart/Line chart hybrid- Charting
Hi all, I have a requirement to have a stacked bar graph, with a line graph on the same chart. Has anyone here done this before? Apparently there... -
creating a dynamic flow chart
Hello, I'm new to Flex (just downloaded the FB3). I need to create a web interface which displays a flow chart. New nodes (actions, decisions) may... -
Refreshing chart data doesnt update chart
I must be missing something simple here. I have a column chart that is using an array for its dataprovider. However, when I update the underlying... -
Error in DBD::Chart (called from DBIx::Chart)
I'm receiving this error message when I run a PERL script: Use of uninitialized value in string ne at C:/Perl/site/lib/DBD/Chart.pm line 2491. ... -
dynamically creating pie chart
I have a format that we use to create pie charts and i would like to create a tool to generate the chart in the format we want just by passing 3...



Reply With Quote

