Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ColdFusion Graph not displaying in Netscape -- WHY???

Status
Not open for further replies.

nalbiso

Programmer
Aug 31, 2000
71
0
0
US
Hello,

I have created a graph in coldfusion (fileformat=flash) but it won't display in Netscape. Does anyone know why?

Thanks!

<!-- Calling graph tag -->

<cfgraph
Type=&quot;Pie&quot;
query=&quot;grandtotal&quot;
ValueColumn=&quot;gtotal&quot;
itemcolumn=&quot;Status&quot;
fileformat=&quot;flash&quot;
Title=&quot;Graphical Representation for all Sales by Status&quot;
Borderwidth=&quot;1&quot;
Bordercolor=&quot;black&quot;
Depth=&quot;20&quot;>
</cfgraph>
<font face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;2&quot;><i>Numerical displayed on the graph is the dollar amount of sales for a particular order status type.</i></font>
 
Hi,Whats the error message? the only thing i can think is that CFgraph has expired in CF5. Try
CFCHART

So it would be something like -

<cfchart chartwidth=&quot;150&quot; show3d=&quot;no&quot; yaxistitle=&quot;hits&quot; showlegend=&quot;no&quot; >
<cfchartseries type=&quot;pie&quot; query=&quot;grandtotal&quot; itemcolumn=&quot;status&quot; valuecolumn=&quot;gtotal&quot; >
</cfchart>

etc etc. Hope this helps
 
Thanks for the response.

I figured out the problem on my own after a long walk.

:)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top