Re: Error Using WebCharts for Pie Chart

2012-01-27 Thread Kelly Ross

Can you share your XML file? It would be best if you could use an XML
string and static data. If you can then share one CFM file I can run
locally it will make testing easier.


On Thu, Jan 26, 2012 at 2:58 PM, Kelly Ross ke...@nox-racing.com wrote:
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349641
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Error Using WebCharts for Pie Chart

2012-01-27 Thread Kelly Ross

For the xml file, to make sure there wasn't any syntax errors, I just copied 
the default_pie.xml from the WebCharts styles directory and then renamed it.

?xml version=1.0 encoding=UTF-8?
pieChart depth=Double style=Solid angle=340 is3D=false
dataLabels style=Value placement=Outside/
legend
decoration style=None/
/legend
elements place=Default drawOutline=false
series index=0
paint color=#E48701/
/series
series index=1
paint color=#A5BC4E/
/series
series index=2
paint color=#1B95D9/
/series
series index=3
paint color=#CACA9E/
/series
series index=4
paint color=#6693B0/
/series
series index=5
paint color=#F05E27/
/series
series index=6
paint color=#86D1E4/
/series
series index=7
paint color=#E4F9A0/
/series
series index=8
paint color=#FFD512/
/series
series index=9
paint color=#75B000/
/series
series index=10
paint color=#0662B0/
/series
series index=11
paint color=#EDE8C6/
/series
series index=12
paint color=#CC3300/
/series
series index=13
paint color=#D1DFE7/
/series
series index=14
paint color=#52D4CA/
/series
series index=15
paint color=#C5E05D/
/series
series index=16
paint color=#E7C174/
/series
series index=17
paint color=#FFF797/
/series
series index=18
paint color=#C5F68F/
/series
series index=19
paint color=#BDF1E6/
/series
series index=20
paint color=#9E987D/
/series
series index=21
paint color=#EB988D/
/series
series index=22
paint color=#91C9E5/
/series
series index=23
paint color=#93DC4A/
/series
series index=24
paint color=#FFB900/
/series
series index=25
paint color=#9EBBCD/
/series
series index=26
paint color=#009797/
/series
series index=27
paint color=#0DB2C2/
/series
/elements
popup background=#C8FF foreground=#33/
paint paint=Plain/
insets left=5 top=5 right=5 bottom=5/
/pieChart



For the chart, I am testing with a basic pie chart with static values:

cfchart
  pieslicestyle=sliced
  format=png
  chartHeight = 400
  chartWidth = 600
  font=Arial
  showborder=no
  show3d=yes
  yAxisTitle = Test X Axis
  style = test
   
   

cfchartseries
  type=pie
  paintStyle=plain
  colorlist=##1e2695,red,green,yellow  
 
  cfchartdata item = 1 value = 4
  cfchartdata item = 2  value = 8 
  cfchartdata item = 3  value = 10   
  cfchartdata item = 4  value = 12   
 
/cfchartseries 
/cfchart

I am leaving the xml file in the ColdFusion8/Charting/Styles  directory as this 
seems to be the default

Re: Error Using WebCharts for Pie Chart

2012-01-27 Thread Raymond Camden

Forgot to trim my last reply, so sorry if this is a dupe:

The style attribute works both with files and strings. I believe CF is
just getting confused here. Take your xml file and simply place it in
the same folder as your CFM and then specify test.xml, NOT just test,
and it should work fine

On Fri, Jan 27, 2012 at 7:42 AM, Kelly Ross ke...@nox-racing.com wrote:

 For the xml file, to make sure there wasn't any syntax errors, I just copied 
 the default_pie.xml from the WebCharts styles directory and then renamed it.



-- 
===
Raymond Camden, Adobe Developer Evangelist

Email : raymondcam...@gmail.com
Blog : www.raymondcamden.com
Twitter: cfjedimaster

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349643
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Error Using WebCharts for Pie Chart

2012-01-27 Thread Kelly Ross

That did it. Guess you are right about CF just getting confused. So then I got 
confused why it worked fine for bar graphs but not pie graphs.

Thanks A LOT for your help.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349651
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Error Using WebCharts for Pie Chart

2012-01-26 Thread Kelly Ross

I am using ColdFusion8 and I am creating a report with numerous charts and 
graphs with WebCharts. 

The problem I am having is with pie charts. I want to be able to adjust items 
like the label styles. 

With the bar graphs, I am simply creating the graph with WebCharts, saving the 
xml , and adding the style value (styles = test). No problems.

However, with pie graphs I get a Text Outside XML: error. 

Even if I just copy the default pie xml (default_pie.xml) , rename it, and then 
try to use the style in the cfchart tag, it gives me the same error.

Here are examples:

This works for a bar graph. You will see I have style=Veggies. The name of 
the xml file I am using for that bar chart is called Veggies.xml. I have 6 bar 
charts using 6 different xml files working this way with no problem :

 
cfchart  
format=png 
xaxistitle=  
chartheight=500  
chartwidth=600  
scalefrom=0 
font=arial 
fontsize=16 
xoffset=0.05 
yoffset=0.05 
show3d = no 
fontBold =yes 
style=Veggies 
 

But the same format does NOT work for pie chart. I get the Text Outside XML 
error:
 

cfchart
pieslicestyle=sliced
format=png
chartHeight = 400
chartWidth = 600
font=Arial
showborder=no
show3d=yes
yAxisTitle = Test X Axis
style=test



Any one have any ideas?


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349631
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Error Using WebCharts for Pie Chart

2012-01-26 Thread Raymond Camden

Can you share your XML file? It would be best if you could use an XML
string and static data. If you can then share one CFM file I can run
locally it will make testing easier.


On Thu, Jan 26, 2012 at 2:58 PM, Kelly Ross ke...@nox-racing.com wrote:

 I am using ColdFusion8 and I am creating a report with numerous charts and 
 graphs with WebCharts.

 The problem I am having is with pie charts. I want to be able to adjust items 
 like the label styles.

 With the bar graphs, I am simply creating the graph with WebCharts, saving 
 the xml , and adding the style value (styles = test). No problems.

 However, with pie graphs I get a Text Outside XML: error.

 Even if I just copy the default pie xml (default_pie.xml) , rename it, and 
 then try to use the style in the cfchart tag, it gives me the same error.

 Here are examples:

 This works for a bar graph. You will see I have style=Veggies. The name of 
 the xml file I am using for that bar chart is called Veggies.xml. I have 6 
 bar charts using 6 different xml files working this way with no problem :


 cfchart
 format=png
 xaxistitle=
 chartheight=500
 chartwidth=600
 scalefrom=0
 font=arial
 fontsize=16
 xoffset=0.05
        yoffset=0.05
 show3d = no
 fontBold =yes
 style=Veggies


 But the same format does NOT work for pie chart. I get the Text Outside XML 
 error:


 cfchart
        pieslicestyle=sliced
        format=png
        chartHeight = 400
        chartWidth = 600
        font=Arial
        showborder=no
        show3d=yes
        yAxisTitle = Test X Axis
        style=test
     


 Any one have any ideas?


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349632
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: More pie chart issues with CFChart

2009-10-20 Thread Sandra Clark

Found the answer.

When using paint paint=Pattern in the xml style sheet, remember to
remove the attribute paintstyle=Plain from cfchartseries .  Apparently,
it supersedes it.

Thanks for the help.

On Fri, Oct 16, 2009 at 9:05 PM, Leigh cfsearch...@yahoo.com wrote:


  pie chart in the example.  Copied the xml into my
  pie.xml on my system, ran
  it and everything is still solid.

 I suspect it might be a problem with your xml.  In a quick test it worked
 fine for me. I made a copy of C:\ColdFusion8\charting\styles\default_pie.xml
 and changed one line:

 - Changed paint paint=Plain/ to paint paint=Pattern/
 - Used the custom style:
 cfset custom = FileRead(ExpandPath(myPattern_pie.xml))
 cfchart style=#custom #/cfchart

 -Leigh





 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327366
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: More pie chart issues with CFChart

2009-10-20 Thread Leigh

 When using paint paint=Pattern in the xml style
 sheet, remember to remove the attribute paintstyle=Plain 

Yes, you cannot have two of the same attribute. So just replacing the paint 
paint=Plain/ line with paint paint=Pattern/ does the trick.

-Leigh



  


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327369
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


More pie chart issues with CFChart

2009-10-16 Thread Sandra Clark

So today, I was asked to apply patterns to the pie slices in my CFChart.  I
thought it would be no problem, I went into the Web3d Charting program,
added the option paint paint=Pattern and was shown a nicely patterned
pie chart in the example.  Copied the xml into my pie.xml on my system, ran
it and everything is still solid.

This is on a CF8 system with the latest updater installed.  Is this a bug?
 Has anyone successfully been able to apply patterns to pie charts with this
tag?

Sandra Clark


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327284
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: More pie chart issues with CFChart

2009-10-16 Thread Leigh

 pie chart in the example.  Copied the xml into my
 pie.xml on my system, ran
 it and everything is still solid.

I suspect it might be a problem with your xml.  In a quick test it worked fine 
for me. I made a copy of C:\ColdFusion8\charting\styles\default_pie.xml and 
changed one line:

- Changed paint paint=Plain/ to paint paint=Pattern/
- Used the custom style:
cfset custom = FileRead(ExpandPath(myPattern_pie.xml))
cfchart style=#custom #/cfchart

-Leigh



  

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327290
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


CFChart -- Pie Chart Question...

2005-08-15 Thread Charles Heizer
Hello,
I can't seem to find any good info on this...

I I have a pie chart which is getting is data from a database query. It has
two items being returned, PASS and FAIL. I would like to know if there is a
way that I can associate the color Red with FAIL and Green with PASS?

Thanks,
- Charles



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215007
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: pie chart

2001-03-01 Thread Dave Watts

 i did checked sample code, different is, i'm having a UNIX 
 version Cf and you having Windows version CF, may be the 
 classes do not come with the UNIX version?

I don't think they come with the Solaris version. I don't know why, though.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



pie chart /Database Component Framework...

2001-03-01 Thread Zhou, Mei Y (Mei)

Hi, all pie chart talker:

Thank you for all the suggestion.

I have tried to contact Allaire support, waiting to response back today. I
will update you all when I get the information.

However, I did try yesterday to copy all the classes of which stored in 
c:/inetput/wwwroot/classes/CFGraphs/ to my Netscape server, and I try to
figure out the CLASSPATH for the Applet to read that class, I think that 
should work, 

can someone give me a hint how to set up the classpath? 
and does it under iPlanet server or under ColdFusion?

I think Database Component Framework(DCF) from ColdFusion is beautiful to
make
piechart on the web-- no need to third party tool, I do not know why this
framework is not emphasized? any one has good source?

Thanks.

Mei

-Original Message-
From: Mak Wing Lok [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 28, 2001 7:37 PM
To: CF-Talk
Subject: Re: pie chart


I don't think it comes with CF 4.5, but you'll have those java class when
you installed spectra, if you want to, email me off the list may be i can
mail those jave class to you.


- Original Message -
From: "Zhou, Mei Y (Mei)" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Wednesday, February 28, 2001 11:57 PM
Subject: RE: pie chart


 I am working on iPlanet/CF 4.5, but I can not find the directory called
 CFGraphs, can someone gives me a hint?

 Thanks.

 -Original Message-
 From: Sean Renet [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, February 28, 2001 5:19 AM
 To: CF-Talk
 Subject: Re: pie chart


 its in C:\Inetpub\wwwroot\classes\CFGraphs  if your inetpub is on your c
 drive.
 - Original Message -
 From: "Mak Wing Lok" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Wednesday, February 28, 2001 1:41 AM
 Subject: Re: pie chart


  that's version 3.1, I'm using 4.5, i can't seems to find the Java
classes
 in
  the CF directory
 
  mak wl
 
  - Original Message -
  From: "David Shadovitz" [EMAIL PROTECTED]
  To: "CF-Talk" [EMAIL PROTECTED]
  Sent: Wednesday, February 28, 2001 2:57 PM
  Subject: RE: pie chart
 
 
   CF comes with a pie chart Java applet.  Check out the CF 3.1
 documentation
  on
   the bar and pie chart "graphlets" at
   http://telecom.fit.edu/cfdocs/user/ug20.htm.  (Thanks to Al Musella
for
  tipping
   me off to this.)
  
   -David
  
   On Tuesday, February 27, 2001 Sean Renet
 [SMTP:[EMAIL PROTECTED]]
   wrote:
www.cfxgraphicsserver.com
  
- Original Message -
From: "Mak Wing Lok" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, February 27, 2001 4:38 PM
Subject: pie chart

 anyone knows any nice and cool pie chart custom tags?
  
  
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: pie chart

2001-02-28 Thread Mak Wing Lok

that's version 3.1, I'm using 4.5, i can't seems to find the Java classes in
the CF directory

mak wl

- Original Message -
From: "David Shadovitz" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Wednesday, February 28, 2001 2:57 PM
Subject: RE: pie chart


 CF comes with a pie chart Java applet.  Check out the CF 3.1 documentation
on
 the bar and pie chart "graphlets" at
 http://telecom.fit.edu/cfdocs/user/ug20.htm.  (Thanks to Al Musella for
tipping
 me off to this.)

 -David

 On Tuesday, February 27, 2001 Sean Renet [SMTP:[EMAIL PROTECTED]]
 wrote:
  www.cfxgraphicsserver.com

  - Original Message -
  From: "Mak Wing Lok" [EMAIL PROTECTED]
  To: "CF-Talk" [EMAIL PROTECTED]
  Sent: Tuesday, February 27, 2001 4:38 PM
  Subject: pie chart
  
   anyone knows any nice and cool pie chart custom tags?


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: pie chart

2001-02-28 Thread Sean Renet

its in C:\Inetpub\wwwroot\classes\CFGraphs  if your inetpub is on your c
drive.
- Original Message -
From: "Mak Wing Lok" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Wednesday, February 28, 2001 1:41 AM
Subject: Re: pie chart


 that's version 3.1, I'm using 4.5, i can't seems to find the Java classes
in
 the CF directory

 mak wl

 - Original Message -
 From: "David Shadovitz" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Wednesday, February 28, 2001 2:57 PM
 Subject: RE: pie chart


  CF comes with a pie chart Java applet.  Check out the CF 3.1
documentation
 on
  the bar and pie chart "graphlets" at
  http://telecom.fit.edu/cfdocs/user/ug20.htm.  (Thanks to Al Musella for
 tipping
  me off to this.)
 
  -David
 
  On Tuesday, February 27, 2001 Sean Renet
[SMTP:[EMAIL PROTECTED]]
  wrote:
   www.cfxgraphicsserver.com
 
   - Original Message -
   From: "Mak Wing Lok" [EMAIL PROTECTED]
   To: "CF-Talk" [EMAIL PROTECTED]
   Sent: Tuesday, February 27, 2001 4:38 PM
   Subject: pie chart
   
anyone knows any nice and cool pie chart custom tags?
 
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: pie chart

2001-02-28 Thread Nick Betts

How would one use these classes to display charts?
nik

-Original Message-
From: Sean Renet [mailto:[EMAIL PROTECTED]]
Sent: 28 February 2001 10:19
To: CF-Talk
Subject: Re: pie chart


its in C:\Inetpub\wwwroot\classes\CFGraphs  if your inetpub is on your c
drive.
- Original Message -
From: "Mak Wing Lok" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Wednesday, February 28, 2001 1:41 AM
Subject: Re: pie chart


 that's version 3.1, I'm using 4.5, i can't seems to find the Java classes
in
 the CF directory

 mak wl

 - Original Message -
 From: "David Shadovitz" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Wednesday, February 28, 2001 2:57 PM
 Subject: RE: pie chart


  CF comes with a pie chart Java applet.  Check out the CF 3.1
documentation
 on
  the bar and pie chart "graphlets" at
  http://telecom.fit.edu/cfdocs/user/ug20.htm.  (Thanks to Al Musella for
 tipping
  me off to this.)
 
  -David
 
  On Tuesday, February 27, 2001 Sean Renet
[SMTP:[EMAIL PROTECTED]]
  wrote:
   www.cfxgraphicsserver.com
 
   - Original Message -
   From: "Mak Wing Lok" [EMAIL PROTECTED]
   To: "CF-Talk" [EMAIL PROTECTED]
   Sent: Tuesday, February 27, 2001 4:38 PM
   Subject: pie chart
   
anyone knows any nice and cool pie chart custom tags?
 
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: pie chart

2001-02-28 Thread Mak Wing Lok

thanks, eventually i found it in /allaire/spectra/classes

mak wl

- Original Message -
From: "Sean Renet" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Wednesday, February 28, 2001 6:18 PM
Subject: Re: pie chart


 its in C:\Inetpub\wwwroot\classes\CFGraphs  if your inetpub is on your c
 drive.
 - Original Message -
 From: "Mak Wing Lok" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Wednesday, February 28, 2001 1:41 AM
 Subject: Re: pie chart


  that's version 3.1, I'm using 4.5, i can't seems to find the Java
classes
 in
  the CF directory
 
  mak wl
 
  - Original Message -
  From: "David Shadovitz" [EMAIL PROTECTED]
  To: "CF-Talk" [EMAIL PROTECTED]
  Sent: Wednesday, February 28, 2001 2:57 PM
  Subject: RE: pie chart
 
 
   CF comes with a pie chart Java applet.  Check out the CF 3.1
 documentation
  on
   the bar and pie chart "graphlets" at
   http://telecom.fit.edu/cfdocs/user/ug20.htm.  (Thanks to Al Musella
for
  tipping
   me off to this.)
  
   -David
  
   On Tuesday, February 27, 2001 Sean Renet
 [SMTP:[EMAIL PROTECTED]]
   wrote:
www.cfxgraphicsserver.com
  
- Original Message -
From: "Mak Wing Lok" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, February 27, 2001 4:38 PM
Subject: pie chart

 anyone knows any nice and cool pie chart custom tags?
  
  
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: pie chart

2001-02-28 Thread Sean Renet

Well depending on your set up you need to add
C:\Inetpub\wwwroot\classes\CFGraphs  to your CLASSPATH enviroment variable
then just set up an applet like normal

cfparam name="Industry" default="Tech,Agriculture"
cfparam name="Percent" default="50,50"

APPLET CODE="PieChart"  CODEBASE="/classes/CFGraphs/" WIDTH="300"
HEIGHT="300" 
PARAM NAME="ChartData.Columns" VALUE="Items,Values"
cfoutput
PARAM NAME="ChartData.Items" VALUE="#Industry#"
PARAM NAME="ChartData.Values"  VALUE="#Percent#"
/cfoutput
PARAM NAME="BackgroundColor"  VALUE="0080C0"
PARAM NAME="LegendFontName"  VALUE="Verdana"
PARAM NAME="FontColor"  VALUE="FF"
PARAM NAME="Title"  VALUE="Sean's Test CF Java Applet Pie Chart"
PARAM NAME="TitleFontName"  VALUE="Times Roman"
PARAM NAME="TitleFontHeight"  VALUE="16"
PARAM NAME="LegendFontHeight"  VALUE="14"
PARAM NAME="ShowDateTime"  VALUE="no"
PARAM NAME="RefreshTime" VALUE="10"
PARAM NAME="RefreshDataFromURL"
VALUE="http://www.development.ws/testfolder/monitor.cfm"
/APPLET

NOTE: Java is CASE SENSITIVE so PieChart must be capital "P"  Capital "C".


I don't think I ever got that RefreshDataFromURL parameter to work which is
why I went with cfxgraphicserver
----- Original Message -
From: "Nick Betts" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Wednesday, February 28, 2001 2:09 AM
Subject: RE: pie chart


 How would one use these classes to display charts?
 nik

 -Original Message-
 From: Sean Renet [mailto:[EMAIL PROTECTED]]
 Sent: 28 February 2001 10:19
 To: CF-Talk
 Subject: Re: pie chart


 its in C:\Inetpub\wwwroot\classes\CFGraphs  if your inetpub is on your c
 drive.
 - Original Message -
 From: "Mak Wing Lok" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Wednesday, February 28, 2001 1:41 AM
 Subject: Re: pie chart


  that's version 3.1, I'm using 4.5, i can't seems to find the Java
classes
 in
  the CF directory
 
  mak wl
 
  - Original Message -
  From: "David Shadovitz" [EMAIL PROTECTED]
  To: "CF-Talk" [EMAIL PROTECTED]
  Sent: Wednesday, February 28, 2001 2:57 PM
  Subject: RE: pie chart
 
 
   CF comes with a pie chart Java applet.  Check out the CF 3.1
 documentation
  on
   the bar and pie chart "graphlets" at
   http://telecom.fit.edu/cfdocs/user/ug20.htm.  (Thanks to Al Musella
for
  tipping
   me off to this.)
  
   -David
  
   On Tuesday, February 27, 2001 Sean Renet
 [SMTP:[EMAIL PROTECTED]]
   wrote:
www.cfxgraphicsserver.com
  
- Original Message -
From: "Mak Wing Lok" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, February 27, 2001 4:38 PM
Subject: pie chart

 anyone knows any nice and cool pie chart custom tags?
  
  
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: pie chart

2001-02-28 Thread Nick Betts

cheers sean!
nik

-Original Message-
From: Sean Renet [mailto:[EMAIL PROTECTED]]
Sent: 28 February 2001 11:06
To: CF-Talk
Subject: Re: pie chart


Well depending on your set up you need to add
C:\Inetpub\wwwroot\classes\CFGraphs  to your CLASSPATH enviroment variable
then just set up an applet like normal

cfparam name="Industry" default="Tech,Agriculture"
cfparam name="Percent" default="50,50"

APPLET CODE="PieChart"  CODEBASE="/classes/CFGraphs/" WIDTH="300"
HEIGHT="300" 
PARAM NAME="ChartData.Columns" VALUE="Items,Values"
cfoutput
PARAM NAME="ChartData.Items" VALUE="#Industry#"
PARAM NAME="ChartData.Values"  VALUE="#Percent#"
/cfoutput
PARAM NAME="BackgroundColor"  VALUE="0080C0"
PARAM NAME="LegendFontName"  VALUE="Verdana"
PARAM NAME="FontColor"  VALUE="FF"
PARAM NAME="Title"  VALUE="Sean's Test CF Java Applet Pie Chart"
PARAM NAME="TitleFontName"  VALUE="Times Roman"
PARAM NAME="TitleFontHeight"  VALUE="16"
PARAM NAME="LegendFontHeight"  VALUE="14"
PARAM NAME="ShowDateTime"  VALUE="no"
PARAM NAME="RefreshTime" VALUE="10"
PARAM NAME="RefreshDataFromURL"
VALUE="http://www.development.ws/testfolder/monitor.cfm"
/APPLET

NOTE: Java is CASE SENSITIVE so PieChart must be capital "P"  Capital "C".


I don't think I ever got that RefreshDataFromURL parameter to work which is
why I went with cfxgraphicserver
----- Original Message -
From: "Nick Betts" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Wednesday, February 28, 2001 2:09 AM
Subject: RE: pie chart


 How would one use these classes to display charts?
 nik

 -Original Message-
 From: Sean Renet [mailto:[EMAIL PROTECTED]]
 Sent: 28 February 2001 10:19
 To: CF-Talk
 Subject: Re: pie chart


 its in C:\Inetpub\wwwroot\classes\CFGraphs  if your inetpub is on your c
 drive.
 - Original Message -
 From: "Mak Wing Lok" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Wednesday, February 28, 2001 1:41 AM
 Subject: Re: pie chart


  that's version 3.1, I'm using 4.5, i can't seems to find the Java
classes
 in
  the CF directory
 
  mak wl
 
  - Original Message -
  From: "David Shadovitz" [EMAIL PROTECTED]
  To: "CF-Talk" [EMAIL PROTECTED]
  Sent: Wednesday, February 28, 2001 2:57 PM
  Subject: RE: pie chart
 
 
   CF comes with a pie chart Java applet.  Check out the CF 3.1
 documentation
  on
   the bar and pie chart "graphlets" at
   http://telecom.fit.edu/cfdocs/user/ug20.htm.  (Thanks to Al Musella
for
  tipping
   me off to this.)
  
   -David
  
   On Tuesday, February 27, 2001 Sean Renet
 [SMTP:[EMAIL PROTECTED]]
   wrote:
www.cfxgraphicsserver.com
  
- Original Message -
From: "Mak Wing Lok" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, February 27, 2001 4:38 PM
Subject: pie chart

 anyone knows any nice and cool pie chart custom tags?
  
  
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: pie chart

2001-02-28 Thread Sean Renet

heh, I haven't run those things in so long I just took a look and figured
out why I couldn't use the RefreshDataFromURL param.  The applet includes
the CF Server Debugging if you have it on so it was blowing it up.  So if
you use the code below, your monitor.cfm would look something like

cfparam name="Industry" default="Tech,Agriculture"
cfparam name="Percent" default="90,10"
cfscript
APPLETTEST = QueryNew("Industry,Percent");

if(IsDefined("Industry")) {
 for(i = 1; i LTE listlen(Industry); i = i + 1) {
  QueryAddRow(APPLETTEST);
  QuerySetCell(APPLETTEST, "Industry", listgetat(industry,i));
  QuerySetCell(APPLETTEST, "Percent",  listgetat(Percent,i));
 }
}
/cfscript

 Columns:Items,Values

Cfoutput query="APPLETTEST"
#Industry#,#Percent#
/CFOUTPUT
- Original Message -
From: "Sean Renet" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Wednesday, February 28, 2001 3:06 AM
Subject: Re: pie chart


 Well depending on your set up you need to add
 C:\Inetpub\wwwroot\classes\CFGraphs  to your CLASSPATH enviroment variable
 then just set up an applet like normal

 cfparam name="Industry" default="Tech,Agriculture"
 cfparam name="Percent" default="50,50"

 APPLET CODE="PieChart"  CODEBASE="/classes/CFGraphs/" WIDTH="300"
 HEIGHT="300" 
 PARAM NAME="ChartData.Columns" VALUE="Items,Values"
 cfoutput
 PARAM NAME="ChartData.Items" VALUE="#Industry#"
 PARAM NAME="ChartData.Values"  VALUE="#Percent#"
 /cfoutput
 PARAM NAME="BackgroundColor"  VALUE="0080C0"
 PARAM NAME="LegendFontName"  VALUE="Verdana"
 PARAM NAME="FontColor"  VALUE="FF"
 PARAM NAME="Title"  VALUE="Sean's Test CF Java Applet Pie Chart"
 PARAM NAME="TitleFontName"  VALUE="Times Roman"
 PARAM NAME="TitleFontHeight"  VALUE="16"
 PARAM NAME="LegendFontHeight"  VALUE="14"
 PARAM NAME="ShowDateTime"  VALUE="no"
 PARAM NAME="RefreshTime" VALUE="10"
 PARAM NAME="RefreshDataFromURL"
 VALUE="http://www.development.ws/testfolder/monitor.cfm"
 /APPLET

 NOTE: Java is CASE SENSITIVE so PieChart must be capital "P"  Capital "C".


 I don't think I ever got that RefreshDataFromURL parameter to work which
is
 why I went with cfxgraphicserver
 - Original Message -
 From: "Nick Betts" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Wednesday, February 28, 2001 2:09 AM
 Subject: RE: pie chart


  How would one use these classes to display charts?
  nik
 
  -Original Message-
  From: Sean Renet [mailto:[EMAIL PROTECTED]]
  Sent: 28 February 2001 10:19
  To: CF-Talk
  Subject: Re: pie chart
 
 
  its in C:\Inetpub\wwwroot\classes\CFGraphs  if your inetpub is on your c
  drive.
  - Original Message -----
  From: "Mak Wing Lok" [EMAIL PROTECTED]
  To: "CF-Talk" [EMAIL PROTECTED]
  Sent: Wednesday, February 28, 2001 1:41 AM
  Subject: Re: pie chart
 
 
   that's version 3.1, I'm using 4.5, i can't seems to find the Java
 classes
  in
   the CF directory
  
   mak wl
  
   - Original Message -
   From: "David Shadovitz" [EMAIL PROTECTED]
   To: "CF-Talk" [EMAIL PROTECTED]
   Sent: Wednesday, February 28, 2001 2:57 PM
   Subject: RE: pie chart
  
  
CF comes with a pie chart Java applet.  Check out the CF 3.1
  documentation
   on
the bar and pie chart "graphlets" at
http://telecom.fit.edu/cfdocs/user/ug20.htm.  (Thanks to Al Musella
 for
   tipping
me off to this.)
   
-David
   
On Tuesday, February 27, 2001 Sean Renet
  [SMTP:[EMAIL PROTECTED]]
wrote:
 www.cfxgraphicsserver.com
   
 - Original Message -
 From: "Mak Wing Lok" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Tuesday, February 27, 2001 4:38 PM
 Subject: pie chart
 
  anyone knows any nice and cool pie chart custom tags?
   
   
  
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: pie chart

2001-02-28 Thread Zhou, Mei Y (Mei)

I am working on iPlanet/CF 4.5, but I can not find the directory called
CFGraphs, can someone gives me a hint?

Thanks.

-Original Message-
From: Sean Renet [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 28, 2001 5:19 AM
To: CF-Talk
Subject: Re: pie chart


its in C:\Inetpub\wwwroot\classes\CFGraphs  if your inetpub is on your c
drive.
- Original Message -
From: "Mak Wing Lok" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Wednesday, February 28, 2001 1:41 AM
Subject: Re: pie chart


 that's version 3.1, I'm using 4.5, i can't seems to find the Java classes
in
 the CF directory

 mak wl

 - Original Message -
 From: "David Shadovitz" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Wednesday, February 28, 2001 2:57 PM
 Subject: RE: pie chart


  CF comes with a pie chart Java applet.  Check out the CF 3.1
documentation
 on
  the bar and pie chart "graphlets" at
  http://telecom.fit.edu/cfdocs/user/ug20.htm.  (Thanks to Al Musella for
 tipping
  me off to this.)
 
  -David
 
  On Tuesday, February 27, 2001 Sean Renet
[SMTP:[EMAIL PROTECTED]]
  wrote:
   www.cfxgraphicsserver.com
 
   - Original Message -
   From: "Mak Wing Lok" [EMAIL PROTECTED]
   To: "CF-Talk" [EMAIL PROTECTED]
   Sent: Tuesday, February 27, 2001 4:38 PM
   Subject: pie chart
   
anyone knows any nice and cool pie chart custom tags?
 
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: pie chart

2001-02-28 Thread Mak Wing Lok

I don't think it comes with CF 4.5, but you'll have those java class when
you installed spectra, if you want to, email me off the list may be i can
mail those jave class to you.


- Original Message -
From: "Zhou, Mei Y (Mei)" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Wednesday, February 28, 2001 11:57 PM
Subject: RE: pie chart


 I am working on iPlanet/CF 4.5, but I can not find the directory called
 CFGraphs, can someone gives me a hint?

 Thanks.

 -Original Message-
 From: Sean Renet [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, February 28, 2001 5:19 AM
 To: CF-Talk
 Subject: Re: pie chart


 its in C:\Inetpub\wwwroot\classes\CFGraphs  if your inetpub is on your c
 drive.
 - Original Message -
 From: "Mak Wing Lok" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Wednesday, February 28, 2001 1:41 AM
 Subject: Re: pie chart


  that's version 3.1, I'm using 4.5, i can't seems to find the Java
classes
 in
  the CF directory
 
  mak wl
 
  - Original Message -
  From: "David Shadovitz" [EMAIL PROTECTED]
  To: "CF-Talk" [EMAIL PROTECTED]
  Sent: Wednesday, February 28, 2001 2:57 PM
  Subject: RE: pie chart
 
 
   CF comes with a pie chart Java applet.  Check out the CF 3.1
 documentation
  on
   the bar and pie chart "graphlets" at
   http://telecom.fit.edu/cfdocs/user/ug20.htm.  (Thanks to Al Musella
for
  tipping
   me off to this.)
  
   -David
  
   On Tuesday, February 27, 2001 Sean Renet
 [SMTP:[EMAIL PROTECTED]]
   wrote:
www.cfxgraphicsserver.com
  
- Original Message -
From: "Mak Wing Lok" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, February 27, 2001 4:38 PM
Subject: pie chart

 anyone knows any nice and cool pie chart custom tags?
  
  
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: pie chart

2001-02-28 Thread Arden Weiss

I got CF 4.5.1 and the classes are indeed in C:\Inetpub\wwwroot\classes\CFGraphs along 
with a folder named Allaire.
 
Perhaps you did not check the box "sample code" when you installed CF Server.

 ^
/ \__
   (@\___
  /  O
 /(_/
/_/
Whoof...
410-757-3487

-Original Message-
From:   Mak Wing Lok [SMTP:[EMAIL PROTECTED]]
Sent:   Wednesday, February 28, 2001 7:37 PM
To: CF-Talk
Subject:        Re: pie chart

I don't think it comes with CF 4.5, but you'll have those java class when
you installed spectra, if you want to, email me off the list may be i can
mail those jave class to you.


- Original Message -
From: "Zhou, Mei Y (Mei)" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Wednesday, February 28, 2001 11:57 PM
Subject: RE: pie chart


 I am working on iPlanet/CF 4.5, but I can not find the directory called
 CFGraphs, can someone gives me a hint?

 Thanks.

 -Original Message-
 From: Sean Renet [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, February 28, 2001 5:19 AM
 To: CF-Talk
 Subject: Re: pie chart


 its in C:\Inetpub\wwwroot\classes\CFGraphs  if your inetpub is on your c
 drive.
 - Original Message -
 From: "Mak Wing Lok" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Wednesday, February 28, 2001 1:41 AM
 Subject: Re: pie chart


  that's version 3.1, I'm using 4.5, i can't seems to find the Java
classes
 in
  the CF directory
 
  mak wl
 
  - Original Message -
  From: "David Shadovitz" [EMAIL PROTECTED]
  To: "CF-Talk" [EMAIL PROTECTED]
  Sent: Wednesday, February 28, 2001 2:57 PM
  Subject: RE: pie chart
 
 
   CF comes with a pie chart Java applet.  Check out the CF 3.1
 documentation
  on
   the bar and pie chart "graphlets" at
   http://telecom.fit.edu/cfdocs/user/ug20.htm.  (Thanks to Al Musella
for
  tipping
   me off to this.)
  
   -David
  
   On Tuesday, February 27, 2001 Sean Renet
 [SMTP:[EMAIL PROTECTED]]
   wrote:
www.cfxgraphicsserver.com
  
- Original Message -
From: "Mak Wing Lok" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, February 27, 2001 4:38 PM
Subject: pie chart

 anyone knows any nice and cool pie chart custom tags?
  
  
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: pie chart

2001-02-28 Thread Mak Wing Lok

i did checked sample code, different is, i'm having a UNIX version Cf and
you having Windows version CF, may be the classes do not come with the UNIX
version?


- Original Message -
From: "Arden Weiss" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, March 01, 2001 8:49 AM
Subject: RE: pie chart


 I got CF 4.5.1 and the classes are indeed in
C:\Inetpub\wwwroot\classes\CFGraphs along with a folder named Allaire.

 Perhaps you did not check the box "sample code" when you installed CF
Server.

  ^
 / \__
(@\___
   /  O
  /(_/
 /_/
 Whoof...
 410-757-3487

 -Original Message-
 From: Mak Wing Lok [SMTP:[EMAIL PROTECTED]]
 Sent: Wednesday, February 28, 2001 7:37 PM
 To: CF-Talk
 Subject: Re: pie chart

 I don't think it comes with CF 4.5, but you'll have those java class when
 you installed spectra, if you want to, email me off the list may be i can
 mail those jave class to you.


 - Original Message -
 From: "Zhou, Mei Y (Mei)" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Wednesday, February 28, 2001 11:57 PM
 Subject: RE: pie chart


  I am working on iPlanet/CF 4.5, but I can not find the directory called
  CFGraphs, can someone gives me a hint?
 
  Thanks.
 
  -Original Message-
  From: Sean Renet [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, February 28, 2001 5:19 AM
  To: CF-Talk
  Subject: Re: pie chart
 
 
  its in C:\Inetpub\wwwroot\classes\CFGraphs  if your inetpub is on your c
  drive.
  - Original Message -
  From: "Mak Wing Lok" [EMAIL PROTECTED]
  To: "CF-Talk" [EMAIL PROTECTED]
  Sent: Wednesday, February 28, 2001 1:41 AM
  Subject: Re: pie chart
 
 
   that's version 3.1, I'm using 4.5, i can't seems to find the Java
 classes
  in
   the CF directory
  
   mak wl
  
   - Original Message -
   From: "David Shadovitz" [EMAIL PROTECTED]
   To: "CF-Talk" [EMAIL PROTECTED]
   Sent: Wednesday, February 28, 2001 2:57 PM
   Subject: RE: pie chart
  
  
CF comes with a pie chart Java applet.  Check out the CF 3.1
  documentation
   on
the bar and pie chart "graphlets" at
http://telecom.fit.edu/cfdocs/user/ug20.htm.  (Thanks to Al Musella
 for
   tipping
me off to this.)
   
-David
   
On Tuesday, February 27, 2001 Sean Renet
  [SMTP:[EMAIL PROTECTED]]
wrote:
 www.cfxgraphicsserver.com
   
 - Original Message -
 From: "Mak Wing Lok" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
     Sent: Tuesday, February 27, 2001 4:38 PM
 Subject: pie chart
 
  anyone knows any nice and cool pie chart custom tags?
   
   
  
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



pie chart

2001-02-27 Thread Mak Wing Lok

hi..

anyone knows any nice and cool pie chart custom tags?




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: pie chart

2001-02-27 Thread Sean Renet

www.cfxgraphicsserver.com
- Original Message -
From: "Mak Wing Lok" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, February 27, 2001 4:38 PM
Subject: pie chart


 hi..

 anyone knows any nice and cool pie chart custom tags?





~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: pie chart

2001-02-27 Thread David Shadovitz

CF comes with a pie chart Java applet.  Check out the CF 3.1 documentation on 
the bar and pie chart "graphlets" at 
http://telecom.fit.edu/cfdocs/user/ug20.htm.  (Thanks to Al Musella for tipping 
me off to this.)

-David

On Tuesday, February 27, 2001 Sean Renet [SMTP:[EMAIL PROTECTED]] 
wrote:
 www.cfxgraphicsserver.com

 - Original Message -
 From: "Mak Wing Lok" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Tuesday, February 27, 2001 4:38 PM
 Subject: pie chart
 
  anyone knows any nice and cool pie chart custom tags?

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Need a good dynamic bar pie chart app...

2000-09-05 Thread Kevin Langevin

Anyone have a tag/app that plays nicely with ColdFusion to create dynamic
bar and pie chartsin a web page?  I'm specifically looking for something
that will display multiple recommended/actual vertical bars next to each
other, in differing colors.  Any help would be greatly appreciated.

Thanks, all...

CFUG-SFL Manager
-Kev
/CFUG-SFL Manager

 -Original Message-
 From: Jeremy Allen [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, September 05, 2000 12:42 PM
 To: [EMAIL PROTECTED]
 Subject: RE: Apache Isn't Playing Nice with ColdFusion...


 Allaire only supports 1.3.2 and better :)

 From the allaire site..

 "ColdFusion supports only Apache version 1.3.2 and above"
 For Version 4.01

 And for.. 4.5 in my CFDOCS it says

 "To configure the Apache Web Server v1.3.6" which kind
 of implies that you have to use that.

 And apache will not run in the background in Win98
 try reading the release notes for Win32 apache
 ... Here

 http://www.apache.org/docs/windows.html

 Apache + CF + NT is real easy with the right
 versions etc.


 Jeremy






 -Original Message-
 From: Kuehn, Matthew [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, September 05, 2000 12:23 PM
 To: '[EMAIL PROTECTED]'
 Subject: Apache Isn't Playing Nice with ColdFusion...


 This message is in MIME format. Since your mail reader does not understand
 this format, some or all of this message may not be legible.

 --_=_NextPart_001_01C01755.9FA441D8
 Content-Type: text/plain;
   charset="iso-8859-1"

 Hello!

 I installed Apache 1.3.12 on my machine last night, and I got it running
 with the following problems. Any help on any of these points would be
 greatly appreciated. Win98/C533/64MB/CF4.5 config. TIA!

 1) I can't get Apache to run automatically or as a service in the
 background
like PWS used to.

 Right now, I've got a shortcut to apache.exe in my startup group with
 ColdFusion server. Yes, it seems like a huge hack to me, too. So, at
 startup, I get a DOS-looking window that says something like "Apache
 running...", and indeed it is. But, the DOS window can't be closed without
 killing Apache, and even when I try to shut down, I have to Alt-F4 the
 window and say yes to the "are you sure" dialog. Then, next time I start
 Apache, I get a little message in the DOS window about Apache
 being started
 after it was closed inappropriately last time. Using Start  Programs 
 Apache  Stop Apache gives me an error if the Apache DOS window is still
 open. Trying to install Apache as a service gives me some error in a DOS
 window that closes too quickly for me to read what it says. I just want
 Apache to run in the background with no help from me after I get it set up
 the first time. In other words, I want it to run "hidden" like PWS did.
 (Although it does seem to run faster, which was the reason for the
 "upgrade".)

 2) The /images and /stylesheets directories aren't working, unless...

 If I open up IE and hit my site, no images appear, and the page
 is rendered
 without stylesheets, but is otherwise completely functional (queries run,
 CFML is parsed, etc.). So, I can go through and use the site
 without images
 or stylesheets, which is very annoying. But, if I hit Back or use
 history.back();, *the page appears like it is supposed to, complete with
 images and stylesheets*! Consecutive visits to the same page exhibit the
 problems above, but again, using Back or history.back(); will "fix" it.
 That's pretty strange. Yes, the directories are properly mapped
 in CF Admin.
 All of the other dir mappings work correctly. Perhaps I need to add the
 .jpg/.gif/.css file types to httpd.conf? Code, anyone?

 3) Where in httpd.conf is the LoadModule coldfusion_module
modules/ApacheModuleColdFusion.dll line supposed to go?

 At home last night, I stuck it on a new line at the very end of section 1,
 after "#ExtendedStatus On" because I didn't see that it was already there,
 but commented out. Could this be causing the problem listed
 above? I'll fix
 that straightaway when I get home and see, although I'm sure I'll have the
 answer from you guys before then. :-)

 4) Any other Apache/Win32/ColdFusion tips?

 If you have any tips or can point me to some on-line resources for these
 particular problems, I'd really appreciate it. Reply OTL if you feel it is
 appropriate.

 Thanks again,
 Matthew

 --_=_NextPart_001_01C01755.9FA441D8
 Content-Type: text/html;
   charset="iso-8859-1"
 Content-Transfer-Encoding: quoted-printable

 !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"
 HTML
 HEAD
 META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
 charset=3Diso-8859-1"
 META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version =
 5.5.2650.12"
 TITLEApache Isn't Playing Nice with ColdFusion.../TITLE
 /HEAD
 BODY

 PFONT SIZE=3D2Hello!/FONT
 /P

 PFONT SIZE=3D2I installed Apache 1.3.12 on my machine last night, =
 and I got it running with the following problems. Any help on any of =
 these points would be greatly appreciated. 

RE: Need a good dynamic bar pie chart app...

2000-09-05 Thread Helge Hetland

Have you tried popchart from www.popchart.com?

Very good product.

Helge
-Original Message-
From: Kevin Langevin [mailto:[EMAIL PROTECTED]]
Sent: 5. september 2000 20:32
To: [EMAIL PROTECTED]
Subject: Need a good dynamic bar  pie chart app...


Anyone have a tag/app that plays nicely with ColdFusion to create dynamic
bar and pie chartsin a web page?  I'm specifically looking for something
that will display multiple recommended/actual vertical bars next to each
other, in differing colors.  Any help would be greatly appreciated.

Thanks, all...

CFUG-SFL Manager
-Kev
/CFUG-SFL Manager

 -Original Message-
 From: Jeremy Allen [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, September 05, 2000 12:42 PM
 To: [EMAIL PROTECTED]
 Subject: RE: Apache Isn't Playing Nice with ColdFusion...


 Allaire only supports 1.3.2 and better :)

 From the allaire site..

 "ColdFusion supports only Apache version 1.3.2 and above"
 For Version 4.01

 And for.. 4.5 in my CFDOCS it says

 "To configure the Apache Web Server v1.3.6" which kind
 of implies that you have to use that.

 And apache will not run in the background in Win98
 try reading the release notes for Win32 apache
 ... Here

 http://www.apache.org/docs/windows.html

 Apache + CF + NT is real easy with the right
 versions etc.


 Jeremy






 -Original Message-
 From: Kuehn, Matthew [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, September 05, 2000 12:23 PM
 To: '[EMAIL PROTECTED]'
 Subject: Apache Isn't Playing Nice with ColdFusion...


 This message is in MIME format. Since your mail reader does not understand
 this format, some or all of this message may not be legible.

 --_=_NextPart_001_01C01755.9FA441D8
 Content-Type: text/plain;
   charset="iso-8859-1"

 Hello!

 I installed Apache 1.3.12 on my machine last night, and I got it running
 with the following problems. Any help on any of these points would be
 greatly appreciated. Win98/C533/64MB/CF4.5 config. TIA!

 1) I can't get Apache to run automatically or as a service in the
 background
like PWS used to.

 Right now, I've got a shortcut to apache.exe in my startup group with
 ColdFusion server. Yes, it seems like a huge hack to me, too. So, at
 startup, I get a DOS-looking window that says something like "Apache
 running...", and indeed it is. But, the DOS window can't be closed without
 killing Apache, and even when I try to shut down, I have to Alt-F4 the
 window and say yes to the "are you sure" dialog. Then, next time I start
 Apache, I get a little message in the DOS window about Apache
 being started
 after it was closed inappropriately last time. Using Start  Programs 
 Apache  Stop Apache gives me an error if the Apache DOS window is still
 open. Trying to install Apache as a service gives me some error in a DOS
 window that closes too quickly for me to read what it says. I just want
 Apache to run in the background with no help from me after I get it set up
 the first time. In other words, I want it to run "hidden" like PWS did.
 (Although it does seem to run faster, which was the reason for the
 "upgrade".)

 2) The /images and /stylesheets directories aren't working, unless...

 If I open up IE and hit my site, no images appear, and the page
 is rendered
 without stylesheets, but is otherwise completely functional (queries run,
 CFML is parsed, etc.). So, I can go through and use the site
 without images
 or stylesheets, which is very annoying. But, if I hit Back or use
 history.back();, *the page appears like it is supposed to, complete with
 images and stylesheets*! Consecutive visits to the same page exhibit the
 problems above, but again, using Back or history.back(); will "fix" it.
 That's pretty strange. Yes, the directories are properly mapped
 in CF Admin.
 All of the other dir mappings work correctly. Perhaps I need to add the
 .jpg/.gif/.css file types to httpd.conf? Code, anyone?

 3) Where in httpd.conf is the LoadModule coldfusion_module
modules/ApacheModuleColdFusion.dll line supposed to go?

 At home last night, I stuck it on a new line at the very end of section 1,
 after "#ExtendedStatus On" because I didn't see that it was already there,
 but commented out. Could this be causing the problem listed
 above? I'll fix
 that straightaway when I get home and see, although I'm sure I'll have the
 answer from you guys before then. :-)

 4) Any other Apache/Win32/ColdFusion tips?

 If you have any tips or can point me to some on-line resources for these
 particular problems, I'd really appreciate it. Reply OTL if you feel it is
 appropriate.

 Thanks again,
 Matthew

 --_=_NextPart_001_01C01755.9FA441D8
 Content-Type: text/html;
   charset="iso-8859-1"
 Content-Transfer-Encoding: quoted-printable

 !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"
 HTML
 HEAD
 META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
 charset

RE: Need a good dynamic bar pie chart app...

2000-09-05 Thread Daye, Marianne

I was happy with an applet called tChart which allows you to pass parameters
to various types of charts.  At http://www.javaside.com/us/tchart.shtml you
will find a demo and download.  The download comes with several files
depending on your circumstances.  To pass parameters you'll want to use the
example in tChart5.html source code.  You do have to tinker with the html
source code to get the number of columns, labels, colors, etc. that you
want, but once you get the hang of it, it's a great tool at very low cost
($55 w/o Java source code).

Marianne Daye

-Original Message-
From: Kevin Langevin [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, September 05, 2000 2:32 PM
To: [EMAIL PROTECTED]
Subject: Need a good dynamic bar  pie chart app...


Anyone have a tag/app that plays nicely with ColdFusion to create dynamic
bar and pie chartsin a web page?  I'm specifically looking for something
that will display multiple recommended/actual vertical bars next to each
other, in differing colors.  Any help would be greatly appreciated.

Thanks, all...

CFUG-SFL Manager
-Kev
/CFUG-SFL Manager

 -Original Message-
 From: Jeremy Allen [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, September 05, 2000 12:42 PM
 To: [EMAIL PROTECTED]
 Subject: RE: Apache Isn't Playing Nice with ColdFusion...


 Allaire only supports 1.3.2 and better :)

 From the allaire site..

 "ColdFusion supports only Apache version 1.3.2 and above"
 For Version 4.01

 And for.. 4.5 in my CFDOCS it says

 "To configure the Apache Web Server v1.3.6" which kind
 of implies that you have to use that.

 And apache will not run in the background in Win98
 try reading the release notes for Win32 apache
 ... Here

 http://www.apache.org/docs/windows.html

 Apache + CF + NT is real easy with the right
 versions etc.


 Jeremy






 -Original Message-
 From: Kuehn, Matthew [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, September 05, 2000 12:23 PM
 To: '[EMAIL PROTECTED]'
 Subject: Apache Isn't Playing Nice with ColdFusion...


 This message is in MIME format. Since your mail reader does not understand
 this format, some or all of this message may not be legible.

 --_=_NextPart_001_01C01755.9FA441D8
 Content-Type: text/plain;
   charset="iso-8859-1"

 Hello!

 I installed Apache 1.3.12 on my machine last night, and I got it running
 with the following problems. Any help on any of these points would be
 greatly appreciated. Win98/C533/64MB/CF4.5 config. TIA!

 1) I can't get Apache to run automatically or as a service in the
 background
like PWS used to.

 Right now, I've got a shortcut to apache.exe in my startup group with
 ColdFusion server. Yes, it seems like a huge hack to me, too. So, at
 startup, I get a DOS-looking window that says something like "Apache
 running...", and indeed it is. But, the DOS window can't be closed without
 killing Apache, and even when I try to shut down, I have to Alt-F4 the
 window and say yes to the "are you sure" dialog. Then, next time I start
 Apache, I get a little message in the DOS window about Apache
 being started
 after it was closed inappropriately last time. Using Start  Programs 
 Apache  Stop Apache gives me an error if the Apache DOS window is still
 open. Trying to install Apache as a service gives me some error in a DOS
 window that closes too quickly for me to read what it says. I just want
 Apache to run in the background with no help from me after I get it set up
 the first time. In other words, I want it to run "hidden" like PWS did.
 (Although it does seem to run faster, which was the reason for the
 "upgrade".)

 2) The /images and /stylesheets directories aren't working, unless...

 If I open up IE and hit my site, no images appear, and the page
 is rendered
 without stylesheets, but is otherwise completely functional (queries run,
 CFML is parsed, etc.). So, I can go through and use the site
 without images
 or stylesheets, which is very annoying. But, if I hit Back or use
 history.back();, *the page appears like it is supposed to, complete with
 images and stylesheets*! Consecutive visits to the same page exhibit the
 problems above, but again, using Back or history.back(); will "fix" it.
 That's pretty strange. Yes, the directories are properly mapped
 in CF Admin.
 All of the other dir mappings work correctly. Perhaps I need to add the
 .jpg/.gif/.css file types to httpd.conf? Code, anyone?

 3) Where in httpd.conf is the LoadModule coldfusion_module
modules/ApacheModuleColdFusion.dll line supposed to go?

 At home last night, I stuck it on a new line at the very end of section 1,
 after "#ExtendedStatus On" because I didn't see that it was already there,
 but commented out. Could this be causing the problem listed
 above? I'll fix
 that straightaway when I get home and see, although I'm sure I'll have the
 answer from you guys before then. :-)

 4) Any other Apac

RE: Need a good dynamic bar pie chart app...

2000-09-05 Thread Kevin Langevin

Thanks, Helge...I'm downloading the eval right now.  Can you give me any
info on the usefulness of Popchart Live vs. Image Server or Image Server
Pro?

CFUG-SFL Manager
-Kev
/CFUG-SFL Manager

 -Original Message-
 From: Helge Hetland [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, September 05, 2000 2:25 PM
 To: '[EMAIL PROTECTED]'
 Subject: RE: Need a good dynamic bar  pie chart app...


 Have you tried popchart from www.popchart.com?

 Very good product.

 Helge
 -Original Message-
 From: Kevin Langevin [mailto:[EMAIL PROTECTED]]
 Sent: 5. september 2000 20:32
 To: [EMAIL PROTECTED]
 Subject: Need a good dynamic bar  pie chart app...


 Anyone have a tag/app that plays nicely with ColdFusion to create dynamic
 bar and pie chartsin a web page?  I'm specifically looking for something
 that will display multiple recommended/actual vertical bars next to each
 other, in differing colors.  Any help would be greatly appreciated.

 Thanks, all...

 CFUG-SFL Manager
 -Kev
 /CFUG-SFL Manager

  -Original Message-
  From: Jeremy Allen [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, September 05, 2000 12:42 PM
  To: [EMAIL PROTECTED]
  Subject: RE: Apache Isn't Playing Nice with ColdFusion...
 
 
  Allaire only supports 1.3.2 and better :)
 
  From the allaire site..
 
  "ColdFusion supports only Apache version 1.3.2 and above"
  For Version 4.01
 
  And for.. 4.5 in my CFDOCS it says
 
  "To configure the Apache Web Server v1.3.6" which kind
  of implies that you have to use that.
 
  And apache will not run in the background in Win98
  try reading the release notes for Win32 apache
  ... Here
 
  http://www.apache.org/docs/windows.html
 
  Apache + CF + NT is real easy with the right
  versions etc.
 
 
  Jeremy
 
 
 
 
 
 
  -Original Message-
  From: Kuehn, Matthew [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, September 05, 2000 12:23 PM
  To: '[EMAIL PROTECTED]'
  Subject: Apache Isn't Playing Nice with ColdFusion...
 
 
  This message is in MIME format. Since your mail reader does not
 understand
  this format, some or all of this message may not be legible.
 
  --_=_NextPart_001_01C01755.9FA441D8
  Content-Type: text/plain;
  charset="iso-8859-1"
 
  Hello!
 
  I installed Apache 1.3.12 on my machine last night, and I got it running
  with the following problems. Any help on any of these points would be
  greatly appreciated. Win98/C533/64MB/CF4.5 config. TIA!
 
  1) I can't get Apache to run automatically or as a service in the
  background
 like PWS used to.
 
  Right now, I've got a shortcut to apache.exe in my startup group with
  ColdFusion server. Yes, it seems like a huge hack to me, too. So, at
  startup, I get a DOS-looking window that says something like "Apache
  running...", and indeed it is. But, the DOS window can't be
 closed without
  killing Apache, and even when I try to shut down, I have to Alt-F4 the
  window and say yes to the "are you sure" dialog. Then, next time I start
  Apache, I get a little message in the DOS window about Apache
  being started
  after it was closed inappropriately last time. Using Start  Programs 
  Apache  Stop Apache gives me an error if the Apache DOS window is still
  open. Trying to install Apache as a service gives me some error in a DOS
  window that closes too quickly for me to read what it says. I just want
  Apache to run in the background with no help from me after I
 get it set up
  the first time. In other words, I want it to run "hidden" like PWS did.
  (Although it does seem to run faster, which was the reason for the
  "upgrade".)
 
  2) The /images and /stylesheets directories aren't working, unless...
 
  If I open up IE and hit my site, no images appear, and the page
  is rendered
  without stylesheets, but is otherwise completely functional
 (queries run,
  CFML is parsed, etc.). So, I can go through and use the site
  without images
  or stylesheets, which is very annoying. But, if I hit Back or use
  history.back();, *the page appears like it is supposed to, complete with
  images and stylesheets*! Consecutive visits to the same page exhibit the
  problems above, but again, using Back or history.back(); will "fix" it.
  That's pretty strange. Yes, the directories are properly mapped
  in CF Admin.
  All of the other dir mappings work correctly. Perhaps I need to add the
  .jpg/.gif/.css file types to httpd.conf? Code, anyone?
 
  3) Where in httpd.conf is the LoadModule coldfusion_module
 modules/ApacheModuleColdFusion.dll line supposed to go?
 
  At home last night, I stuck it on a new line at the very end of
 section 1,
  after "#ExtendedStatus On" because I didn't see that it was
 already there,
  but commented out. Could this be causing the problem listed
  above? I'll fix
  that straightaway when I get home and see, although I'm sure
 I'll have the
  answer from you guys before then. :-)
 
  4) Any other Apache

RE: Need a good dynamic bar pie chart app...

2000-09-05 Thread Helge Hetland

No, sorry.

I just started looking into it myself. 
I've tested ImageServer and relatively quickly managed to make Flash drill
downs from CF queries.

I guess this text from their web site tells you that ImageServer is the tool
to use
(Pro adds caching, loadbalancing and performance enhancements):

"PopChart Image Server is a server-side tool written in 100% Java that
generates high-quality dynamic charts and graphs and integrates easily with
Allaire ColdFusion. PopChart Image Server can generate either GIF, or FLASH
images from dynamic ColdFusion Queries.  FLASH Images are smaller, quicker
to generate, and allow interaction such as drill-down, roll-over, and popup
text."

Helge


-Original Message-
From: Kevin Langevin [mailto:[EMAIL PROTECTED]]
Sent: 5. september 2000 21:15
To: [EMAIL PROTECTED]
Subject: RE: Need a good dynamic bar  pie chart app...


Thanks, Helge...I'm downloading the eval right now.  Can you give me any
info on the usefulness of Popchart Live vs. Image Server or Image Server
Pro?

CFUG-SFL Manager
-Kev
/CFUG-SFL Manager

 -Original Message-
 From: Helge Hetland [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, September 05, 2000 2:25 PM
 To: '[EMAIL PROTECTED]'
 Subject: RE: Need a good dynamic bar  pie chart app...


 Have you tried popchart from www.popchart.com?

 Very good product.

 Helge
 -Original Message-
 From: Kevin Langevin [mailto:[EMAIL PROTECTED]]
 Sent: 5. september 2000 20:32
 To: [EMAIL PROTECTED]
 Subject: Need a good dynamic bar  pie chart app...


 Anyone have a tag/app that plays nicely with ColdFusion to create dynamic
 bar and pie chartsin a web page?  I'm specifically looking for something
 that will display multiple recommended/actual vertical bars next to each
 other, in differing colors.  Any help would be greatly appreciated.

 Thanks, all...

 CFUG-SFL Manager
 -Kev
 /CFUG-SFL Manager

  -Original Message-
  From: Jeremy Allen [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, September 05, 2000 12:42 PM
  To: [EMAIL PROTECTED]
  Subject: RE: Apache Isn't Playing Nice with ColdFusion...
 
 
  Allaire only supports 1.3.2 and better :)
 
  From the allaire site..
 
  "ColdFusion supports only Apache version 1.3.2 and above"
  For Version 4.01
 
  And for.. 4.5 in my CFDOCS it says
 
  "To configure the Apache Web Server v1.3.6" which kind
  of implies that you have to use that.
 
  And apache will not run in the background in Win98
  try reading the release notes for Win32 apache
  ... Here
 
  http://www.apache.org/docs/windows.html
 
  Apache + CF + NT is real easy with the right
  versions etc.
 
 
  Jeremy
 
 
 
 
 
 
  -Original Message-
  From: Kuehn, Matthew [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, September 05, 2000 12:23 PM
  To: '[EMAIL PROTECTED]'
  Subject: Apache Isn't Playing Nice with ColdFusion...
 
 
  This message is in MIME format. Since your mail reader does not
 understand
  this format, some or all of this message may not be legible.
 
  --_=_NextPart_001_01C01755.9FA441D8
  Content-Type: text/plain;
  charset="iso-8859-1"
 
  Hello!
 
  I installed Apache 1.3.12 on my machine last night, and I got it running
  with the following problems. Any help on any of these points would be
  greatly appreciated. Win98/C533/64MB/CF4.5 config. TIA!
 
  1) I can't get Apache to run automatically or as a service in the
  background
 like PWS used to.
 
  Right now, I've got a shortcut to apache.exe in my startup group with
  ColdFusion server. Yes, it seems like a huge hack to me, too. So, at
  startup, I get a DOS-looking window that says something like "Apache
  running...", and indeed it is. But, the DOS window can't be
 closed without
  killing Apache, and even when I try to shut down, I have to Alt-F4 the
  window and say yes to the "are you sure" dialog. Then, next time I start
  Apache, I get a little message in the DOS window about Apache
  being started
  after it was closed inappropriately last time. Using Start  Programs 
  Apache  Stop Apache gives me an error if the Apache DOS window is still
  open. Trying to install Apache as a service gives me some error in a DOS
  window that closes too quickly for me to read what it says. I just want
  Apache to run in the background with no help from me after I
 get it set up
  the first time. In other words, I want it to run "hidden" like PWS did.
  (Although it does seem to run faster, which was the reason for the
  "upgrade".)
 
  2) The /images and /stylesheets directories aren't working, unless...
 
  If I open up IE and hit my site, no images appear, and the page
  is rendered
  without stylesheets, but is otherwise completely functional
 (queries run,
  CFML is parsed, etc.). So, I can go through and use the site
  without images
  or stylesheets, which is very annoying. But, if I hit Back or use
  history.back();, *the page appears like it is supposed to, comp

RE: Need a good dynamic bar pie chart app...

2000-09-05 Thread Kevin Langevin

Hmmm...I can't seem to get anyone from Corda on the phone...just keep
getting voicemail.  Any idea what pricing is like?

CFUG-SFL Manager
-Kev
/CFUG-SFL Manager

 -Original Message-
 From: Helge Hetland [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, September 05, 2000 2:25 PM
 To: '[EMAIL PROTECTED]'
 Subject: RE: Need a good dynamic bar  pie chart app...


 Have you tried popchart from www.popchart.com?

 Very good product.

 Helge
 -Original Message-
 From: Kevin Langevin [mailto:[EMAIL PROTECTED]]
 Sent: 5. september 2000 20:32
 To: [EMAIL PROTECTED]
 Subject: Need a good dynamic bar  pie chart app...


 Anyone have a tag/app that plays nicely with ColdFusion to create dynamic
 bar and pie chartsin a web page?  I'm specifically looking for something
 that will display multiple recommended/actual vertical bars next to each
 other, in differing colors.  Any help would be greatly appreciated.

 Thanks, all...

 CFUG-SFL Manager
 -Kev
 /CFUG-SFL Manager

  -Original Message-
  From: Jeremy Allen [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, September 05, 2000 12:42 PM
  To: [EMAIL PROTECTED]
  Subject: RE: Apache Isn't Playing Nice with ColdFusion...
 
 
  Allaire only supports 1.3.2 and better :)
 
  From the allaire site..
 
  "ColdFusion supports only Apache version 1.3.2 and above"
  For Version 4.01
 
  And for.. 4.5 in my CFDOCS it says
 
  "To configure the Apache Web Server v1.3.6" which kind
  of implies that you have to use that.
 
  And apache will not run in the background in Win98
  try reading the release notes for Win32 apache
  ... Here
 
  http://www.apache.org/docs/windows.html
 
  Apache + CF + NT is real easy with the right
  versions etc.
 
 
  Jeremy
 
 
 
 
 
 
  -Original Message-
  From: Kuehn, Matthew [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, September 05, 2000 12:23 PM
  To: '[EMAIL PROTECTED]'
  Subject: Apache Isn't Playing Nice with ColdFusion...
 
 
  This message is in MIME format. Since your mail reader does not
 understand
  this format, some or all of this message may not be legible.
 
  --_=_NextPart_001_01C01755.9FA441D8
  Content-Type: text/plain;
  charset="iso-8859-1"
 
  Hello!
 
  I installed Apache 1.3.12 on my machine last night, and I got it running
  with the following problems. Any help on any of these points would be
  greatly appreciated. Win98/C533/64MB/CF4.5 config. TIA!
 
  1) I can't get Apache to run automatically or as a service in the
  background
 like PWS used to.
 
  Right now, I've got a shortcut to apache.exe in my startup group with
  ColdFusion server. Yes, it seems like a huge hack to me, too. So, at
  startup, I get a DOS-looking window that says something like "Apache
  running...", and indeed it is. But, the DOS window can't be
 closed without
  killing Apache, and even when I try to shut down, I have to Alt-F4 the
  window and say yes to the "are you sure" dialog. Then, next time I start
  Apache, I get a little message in the DOS window about Apache
  being started
  after it was closed inappropriately last time. Using Start  Programs 
  Apache  Stop Apache gives me an error if the Apache DOS window is still
  open. Trying to install Apache as a service gives me some error in a DOS
  window that closes too quickly for me to read what it says. I just want
  Apache to run in the background with no help from me after I
 get it set up
  the first time. In other words, I want it to run "hidden" like PWS did.
  (Although it does seem to run faster, which was the reason for the
  "upgrade".)
 
  2) The /images and /stylesheets directories aren't working, unless...
 
  If I open up IE and hit my site, no images appear, and the page
  is rendered
  without stylesheets, but is otherwise completely functional
 (queries run,
  CFML is parsed, etc.). So, I can go through and use the site
  without images
  or stylesheets, which is very annoying. But, if I hit Back or use
  history.back();, *the page appears like it is supposed to, complete with
  images and stylesheets*! Consecutive visits to the same page exhibit the
  problems above, but again, using Back or history.back(); will "fix" it.
  That's pretty strange. Yes, the directories are properly mapped
  in CF Admin.
  All of the other dir mappings work correctly. Perhaps I need to add the
  .jpg/.gif/.css file types to httpd.conf? Code, anyone?
 
  3) Where in httpd.conf is the LoadModule coldfusion_module
 modules/ApacheModuleColdFusion.dll line supposed to go?
 
  At home last night, I stuck it on a new line at the very end of
 section 1,
  after "#ExtendedStatus On" because I didn't see that it was
 already there,
  but commented out. Could this be causing the problem listed
  above? I'll fix
  that straightaway when I get home and see, although I'm sure
 I'll have the
  answer from you guys before then. :-)
 
  4) Any other Apache/Win32/ColdFusion tips?

RE: Need a good dynamic bar pie chart app...

2000-09-05 Thread Helge Hetland

Try this :)

http://www.popchart.com/pricing.cfm

-Original Message-
From: Kevin Langevin [mailto:[EMAIL PROTECTED]]
Sent: 5. september 2000 21:46
To: [EMAIL PROTECTED]
Subject: RE: Need a good dynamic bar  pie chart app...


Hmmm...I can't seem to get anyone from Corda on the phone...just keep
getting voicemail.  Any idea what pricing is like?

CFUG-SFL Manager
-Kev
/CFUG-SFL Manager

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Need a good dynamic bar pie chart app...

2000-09-05 Thread Roberts, Jesse D

The pricing is pretty good.  You can view it all on their site
http://www.corda.com/pricing.cfm. The standard server costs about 2k and the
pro version about 5k.  The builder/development software is $250.

To talk to someone from Corda, call Wenlock Free.  His number is
801-802-0800 x.113.  He was very helpful in setting me up with everything we
needed.  Also, he can answer your questions about the applicability of the
standard vs. pro server and the PopChart Live java applet.

Jesse D. Roberts
Business Process Analyst
Procurement Quality Assurance
Boeing - Huntington Beach, CA
[EMAIL PROTECTED]

 -Original Message-
 From: Kevin Langevin [SMTP:[EMAIL PROTECTED]]
 Sent: Tuesday, September 05, 2000 12:46 PM
 To:   [EMAIL PROTECTED]
 Subject:  RE: Need a good dynamic bar  pie chart app...
 
 Hmmm...I can't seem to get anyone from Corda on the phone...just keep
 getting voicemail.  Any idea what pricing is like?
 
 CFUG-SFL Manager
 -Kev
 /CFUG-SFL Manager
 
  -Original Message-
  From: Helge Hetland [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, September 05, 2000 2:25 PM
  To: '[EMAIL PROTECTED]'
  Subject: RE: Need a good dynamic bar  pie chart app...
 
 
  Have you tried popchart from www.popchart.com?
 
  Very good product.
 
  Helge
  -Original Message-
  From: Kevin Langevin [mailto:[EMAIL PROTECTED]]
  Sent: 5. september 2000 20:32
  To: [EMAIL PROTECTED]
  Subject: Need a good dynamic bar  pie chart app...
 
 
  Anyone have a tag/app that plays nicely with ColdFusion to create
 dynamic
  bar and pie chartsin a web page?  I'm specifically looking for something
  that will display multiple recommended/actual vertical bars next to each
  other, in differing colors.  Any help would be greatly appreciated.
 
  Thanks, all...
 
  CFUG-SFL Manager
  -Kev
  /CFUG-SFL Manager
 
   -Original Message-
   From: Jeremy Allen [mailto:[EMAIL PROTECTED]]
   Sent: Tuesday, September 05, 2000 12:42 PM
   To: [EMAIL PROTECTED]
   Subject: RE: Apache Isn't Playing Nice with ColdFusion...
  
  
   Allaire only supports 1.3.2 and better :)
  
   From the allaire site..
  
   "ColdFusion supports only Apache version 1.3.2 and above"
   For Version 4.01
  
   And for.. 4.5 in my CFDOCS it says
  
   "To configure the Apache Web Server v1.3.6" which kind
   of implies that you have to use that.
  
   And apache will not run in the background in Win98
   try reading the release notes for Win32 apache
   ... Here
  
   http://www.apache.org/docs/windows.html
  
   Apache + CF + NT is real easy with the right
   versions etc.
  
  
   Jeremy
  
  
  
  
  
  
   -Original Message-
   From: Kuehn, Matthew [mailto:[EMAIL PROTECTED]]
   Sent: Tuesday, September 05, 2000 12:23 PM
   To: '[EMAIL PROTECTED]'
   Subject: Apache Isn't Playing Nice with ColdFusion...
  
  
   This message is in MIME format. Since your mail reader does not
  understand
   this format, some or all of this message may not be legible.
  
   --_=_NextPart_001_01C01755.9FA441D8
   Content-Type: text/plain;
 charset="iso-8859-1"
  
   Hello!
  
   I installed Apache 1.3.12 on my machine last night, and I got it
 running
   with the following problems. Any help on any of these points would be
   greatly appreciated. Win98/C533/64MB/CF4.5 config. TIA!
  
   1) I can't get Apache to run automatically or as a service in the
   background
  like PWS used to.
  
   Right now, I've got a shortcut to apache.exe in my startup group with
   ColdFusion server. Yes, it seems like a huge hack to me, too. So, at
   startup, I get a DOS-looking window that says something like "Apache
   running...", and indeed it is. But, the DOS window can't be
  closed without
   killing Apache, and even when I try to shut down, I have to Alt-F4 the
   window and say yes to the "are you sure" dialog. Then, next time I
 start
   Apache, I get a little message in the DOS window about Apache
   being started
   after it was closed inappropriately last time. Using Start  Programs
 
   Apache  Stop Apache gives me an error if the Apache DOS window is
 still
   open. Trying to install Apache as a service gives me some error in a
 DOS
   window that closes too quickly for me to read what it says. I just
 want
   Apache to run in the background with no help from me after I
  get it set up
   the first time. In other words, I want it to run "hidden" like PWS
 did.
   (Although it does seem to run faster, which was the reason for the
   "upgrade".)
  
   2) The /images and /stylesheets directories aren't working, unless...
  
   If I open up IE and hit my site, no images appear, and the page
   is rendered
   without stylesheets, but is otherwise completely functional
  (queries run,
   CFML is parsed, etc.). So, I can go through and use the site
   without images
   or stylesheets, which is very annoying. But, if I hit Back or use
   history.back();, *the page appears like it 

RE: Need a good dynamic bar pie chart app...

2000-09-05 Thread Kevin Langevin

Helge- Yup...I'm a blind idiot.  The link is there clear as day.  I just
talked with one of their people, too, and it looks like Image Server is the
way to go.  Pro version is a bit too pricey, but I might be able to convince
the powers that be to part with $2,700.00 (at least to start).

The regular Image Server program has a max of 50,000 charts served per day,
but if I reach that point (which is very likely) Getting them to pay for
high-volume should be a piece of cake.

CFUG-SFL Manager
-Kev
/CFUG-SFL Manager

 -Original Message-
 From: Helge Hetland [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, September 05, 2000 3:54 PM
 To: '[EMAIL PROTECTED]'
 Subject: RE: Need a good dynamic bar  pie chart app...


 Try this :)

 http://www.popchart.com/pricing.cfm

 -Original Message-
 From: Kevin Langevin [mailto:[EMAIL PROTECTED]]
 Sent: 5. september 2000 21:46
 To: [EMAIL PROTECTED]
 Subject: RE: Need a good dynamic bar  pie chart app...


 Hmmm...I can't seem to get anyone from Corda on the phone...just keep
 getting voicemail.  Any idea what pricing is like?

 CFUG-SFL Manager
 -Kev
 /CFUG-SFL Manager

 --
 
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf
_talk or send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Need a good dynamic bar pie chart app...

2000-09-05 Thread Jackson Moore (CFTalk)

I have used KavaCharts by Visual Engineering.  You can check them out at:

http://www.ve.com/kavachart/index.html

It is a collection of applets that you can embed and use CF to populate the name/value 
pairs.  This is how we used and it worked great.  Also included are servlets so if you 
have a
Java-enabled webserver, you can serve up .gif images generated on the fly (they can 
even be cached for repeitive queries).  The price is good too (free :) for use on web 
pages.  If
you want the java code to use in your own java applications, you can buy the $300 SDK, 
but it's not necessary for use on a website.  We did end up buying it, however, so 
that we could
get rid of the "credits" that appear when you click on a chart.  Their support was 
also excellent when I did have a problem.

Jackson

Kevin Langevin wrote:

 Anyone have a tag/app that plays nicely with ColdFusion to create dynamic
 bar and pie chartsin a web page?  I'm specifically looking for something
 that will display multiple recommended/actual vertical bars next to each
 other, in differing colors.  Any help would be greatly appreciated.

 Thanks, all...

 CFUG-SFL Manager
 -Kev
 /CFUG-SFL Manager

  -Original Message-
  From: Jeremy Allen [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, September 05, 2000 12:42 PM
  To: [EMAIL PROTECTED]
  Subject: RE: Apache Isn't Playing Nice with ColdFusion...
 
 
  Allaire only supports 1.3.2 and better :)
 
  From the allaire site..
 
  "ColdFusion supports only Apache version 1.3.2 and above"
  For Version 4.01
 
  And for.. 4.5 in my CFDOCS it says
 
  "To configure the Apache Web Server v1.3.6" which kind
  of implies that you have to use that.
 
  And apache will not run in the background in Win98
  try reading the release notes for Win32 apache
  ... Here
 
  http://www.apache.org/docs/windows.html
 
  Apache + CF + NT is real easy with the right
  versions etc.
 
 
  Jeremy
 
 
 
 
 
 
  -Original Message-
  From: Kuehn, Matthew [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, September 05, 2000 12:23 PM
  To: '[EMAIL PROTECTED]'
  Subject: Apache Isn't Playing Nice with ColdFusion...
 
 
  This message is in MIME format. Since your mail reader does not understand
  this format, some or all of this message may not be legible.
 
  --_=_NextPart_001_01C01755.9FA441D8
  Content-Type: text/plain;
charset="iso-8859-1"
 
  Hello!
 
  I installed Apache 1.3.12 on my machine last night, and I got it running
  with the following problems. Any help on any of these points would be
  greatly appreciated. Win98/C533/64MB/CF4.5 config. TIA!
 
  1) I can't get Apache to run automatically or as a service in the
  background
 like PWS used to.
 
  Right now, I've got a shortcut to apache.exe in my startup group with
  ColdFusion server. Yes, it seems like a huge hack to me, too. So, at
  startup, I get a DOS-looking window that says something like "Apache
  running...", and indeed it is. But, the DOS window can't be closed without
  killing Apache, and even when I try to shut down, I have to Alt-F4 the
  window and say yes to the "are you sure" dialog. Then, next time I start
  Apache, I get a little message in the DOS window about Apache
  being started
  after it was closed inappropriately last time. Using Start  Programs 
  Apache  Stop Apache gives me an error if the Apache DOS window is still
  open. Trying to install Apache as a service gives me some error in a DOS
  window that closes too quickly for me to read what it says. I just want
  Apache to run in the background with no help from me after I get it set up
  the first time. In other words, I want it to run "hidden" like PWS did.
  (Although it does seem to run faster, which was the reason for the
  "upgrade".)
 
  2) The /images and /stylesheets directories aren't working, unless...
 
  If I open up IE and hit my site, no images appear, and the page
  is rendered
  without stylesheets, but is otherwise completely functional (queries run,
  CFML is parsed, etc.). So, I can go through and use the site
  without images
  or stylesheets, which is very annoying. But, if I hit Back or use
  history.back();, *the page appears like it is supposed to, complete with
  images and stylesheets*! Consecutive visits to the same page exhibit the
  problems above, but again, using Back or history.back(); will "fix" it.
  That's pretty strange. Yes, the directories are properly mapped
  in CF Admin.
  All of the other dir mappings work correctly. Perhaps I need to add the
  .jpg/.gif/.css file types to httpd.conf? Code, anyone?
 
  3) Where in httpd.conf is the LoadModule coldfusion_module
 modules/ApacheModuleColdFusion.dll line supposed to go?
 
  At home last night, I stuck it on a new line at the very end of section 1,
  after "#ExtendedStatus On" because I didn't see that it was already there,
  but commented out. Could this be causing the problem listed
  above? I'll fix
  that straightaway when I get home and see, although I'm sure 

Re: Need a good dynamic bar pie chart app...

2000-09-05 Thread Dirk De Bock

The slickest looking charts I've seen came from
http://chronoweb.chartsoft.com/
but I can't say I have any experience using them in a CF environment.

- Original Message -
From: "Roberts, Jesse D" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, September 05, 2000 10:20 PM
Subject: RE: Need a good dynamic bar  pie chart app...


 The pricing is pretty good.  You can view it all on their site
 http://www.corda.com/pricing.cfm. The standard server costs about 2k and
the
 pro version about 5k.  The builder/development software is $250


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.