Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
steve0331@hotmail.com #1
cfchart Problem
I am having a problem displaying all of the itemColumn values when I use the
cfchart function. I am retreiving 10 records with a query, however on 5 of the
itemColumn values are displaying. All 10 of the valuecolumns are displaying
and only everyother itemColumn value.
Here is a sample of my code:
<cfchart chartheight="315" chartwidth="415" show3D = "yes"
foregroundcolor="##3300FF" backgroundcolor="##C0C099"
xAxisTitle="Donation Dates" yAxisTitle="Cholesterol
Levels">
<cfchartseries type="bar" query="cholesterol" itemColumn="visit"
valuecolumn="cholesterol" seriescolor="##990000">
</cfchartseries>
</cfchart>
steve0331@hotmail.com Guest
-
CF8 and cfchart problem
I could be wrong but it seems to me that coldfusion 8 never displays flash charts when the name is specified, making it impossible to use charts... -
CFChart Problem in MX 7
I am unable to get a single stacked bar to display using cfchart, but I can get multiple bars to display correctly. When I look at the chart, the... -
CFChart Pie problem
When creating a pie from a database query, if 2 or more adjacent slices are very small, say 1 or 2 percent, then the data labels will overlap each... -
CFCHART Problem
I have a few pages with flash charts and a java menu on the same page. I cannot find where to set the WMODE properties for the flash charts to make... -
CFCHART problem in CF7
My charts in CF7 are not showing all of my x-labels when they worked fine in CF6.1. The only way all the x labels appear in CF7 is when I increase... -
Xenotrim #2
Re: cfchart Problem
I had this same problem with a chart I was working on. My issue turned out to
be that the graph thought the labels were overlapping and because of that,
didn't display many of them.
If you are using 7, you can change the overlap from the default. I believe
the only way to do this is to use a style and then edit the .xml file for that
style.
ie. in your cfchart tag put:
<cfchart style="silver">
then modify your C:\CFROOT\charting\styles\silver.xml file to:
<xAxis>
<labelStyle isHideOverlapped="false" orientation="horizontal" />
<titleStyle font="Arial-12-bold" isMultiline="false" />
</xAxis>
This will also apply all other aspects of the 'silver' theme. You can also
make your own style and do this.
Xenotrim Guest
-
steve0331@hotmail.com #3
Re: cfchart Problem
Thanks for that tip. It worked, and I got the results that I wanted.
steve0331@hotmail.com Guest



Reply With Quote

