Hello.

We have a page with all of our current orders and salesmen on it, etc.  Next to 
each salesmen was a graph ($,time) tracking their sales.  It worked great and 
then out of the blue, stopped.  All that comes up now is a white box.  I am 
thinking there is a server side setting that got changed because I made a basic 
stand alone chart and got a red x(png).  Can you guys take a super quick peek 
at the code to make sure I am not missing something silly please?

Thanks,

Spencer


---Chart Code---

<cfchart format="flash" 
                                chartwidth="240" 
                                chartheight="100" 
                                foregroundcolor="###Client.SubmoduleColor4#" 
                                databackgroundcolor="###yang#" 
                                backgroundcolor="###yang#" 
                                labelformat="currency" 
                                font="arial" 
                                fontsize="10" 
                                scalefrom="0" 
                                markersize="2">
                                          <cfchartseries type="line" 
                                    
                                    seriescolor="###Client.SubModuleColor4#">
                                          <cfloop from="0" 
to="#iGraphWeeksBack#" index="iCounter">
                                            <cfset iWeek = ((ListGetAt(sWeeks, 
iCounter + 1) - iFiscalYearStartWeek + iWeeksPerYear) mod iWeeksPerYear)>
                                            <cfif iWeek EQ 0>
                                              <cfset iWeek=52>
                                            </cfif>
                                            <cfchartdata item="#iWeek#" 
value="#ListGetAt(sTotals, iCounter + 1)#">
                                          </cfloop>
                                          </cfchartseries>
                                          </cfchart>


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Newbie/message.cfm/messageid:4005
Subscription: http://www.houseoffusion.com/groups/CF-Newbie/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.15

Reply via email to