Questions tagged [cfchart]

Use the cfchart tag in ColdFusion to display a bar, pie, line, or other applicable type of chart.

The ability to display data in a chart or graph can make data interpretation much easier. Rather than present a simple table of numeric data, you can display a bar, pie, line, or other applicable type of chart using colors, captions, and a two-dimensional or three-dimensional representation of your data.

The ColdFusion cfchart tag, along with the cfchartseries and cfchartdata tags, provide many different chart types. The attributes to these tags let you customize your chart appearance.

You can create 11 types of charts in Adobe ColdFusion in two and three dimensions. The following figure shows a sample of each type of chart.

For more info: Adobe ColdFusion help: Working with Documents, Charts, and Reports - Creating Charts and Graphs

82 questions
2
votes
0 answers

Making a scatter plot with CFCHART

I am trying to build a scatter plot with ColdFusion 9. The input for the x axis is numeric and not evenly spaced. Here's what I tried: SELECT x, y FROM data
Code-Apprentice
  • 81,660
  • 23
  • 145
  • 268
2
votes
1 answer

Coldfusion Charting Multiple Series from QoQ

I am trying to insert a chart in an email that will graph multiple series' data over time. The email works fine, the chart attaches successfully but something is wrong with how I am generating the chart. What I am attempting to do: Loop through the…
sonoflars
  • 35
  • 5
2
votes
0 answers

ColdFusion 2016 CFChart issue

I have an application that we are migrating from ColdFusion 9 to ColdFusion 2016. I am having an issue on a page that creates 6 charts and saves them as images on the server. The system will generate some of the images but then I get a…
Matthew Friedman
  • 491
  • 1
  • 5
  • 12
2
votes
2 answers

Zingchart bar chart starting at y axis -50

When I am trying to create a barchart for mobile, the y axis actually starts from the middle of the screen, hence i am unable to see my chart completely. For viewing the chart, i need to zoom out the device by 20%, or i need to set a plotarea y…
kz2014
  • 324
  • 1
  • 4
  • 12
2
votes
0 answers

How to fix chart in ColdFusion 11?

Like many other people who switched from CF9 to CF11, I'm having issues with charts too. My chart worked perfectly fine in CF9. After we did an update to CF11, a few things just disappeared or do not fit in the chart. In my case I have two elements…
espresso_coffee
  • 5,980
  • 11
  • 83
  • 193
2
votes
1 answer

How can I access the column/bar total in my bar chart?

We're trying to convert our cfcharts to use ZingChart JSON styling, as we'd like to upgrade to CF11 which wrecked all our charts. I'm currently trying to set up the legend for a bar chart. Previously we were using this xml styling code in the…
froadie
  • 79,995
  • 75
  • 166
  • 235
2
votes
1 answer

Overwriting external style JSON for ColdFusion 11 Chart

I've got a chart in CF11 that is kind of an edge case. I need to overwrite one of the styles that's defined in the more general external file that's being referenced in the style tag. Here's my code...
Nick Clark
  • 61
  • 8
2
votes
1 answer

ColdFusion 9 CFCHART CFCHARTSERIES Issue

I'm displaying a chart with one or more line series. The data comes from a query and works correctly if there is more than on series on the chart. However, if only one series is returned it is not displaying correctly. Here's the code…
Brad
  • 1,684
  • 4
  • 20
  • 36
2
votes
0 answers

Cfchart : Cluster of Stacked Bars

I have the following data which I need to display as a cluster of stacked chart for each month. The chart should have two stacked bars for each month. One would be a stacked bar chart of Historical_A and Historical_B Other one would be for…
Gaurav S
  • 999
  • 8
  • 16
2
votes
0 answers

CFchart : 2 Y-axes with only one of them reversed

I'm trying to plot my chart having 2 y-axes. I want one of them to be reversed. The chart signifies the "page rank" and "number of hits" vs the "Date Range". I want the Rank to be in reverse order (1 at the top and Max_Rank on the x-axis). I…
Gaurav S
  • 999
  • 8
  • 16
2
votes
1 answer

cfchart horizontal bar labels crowded

I have created a simple chart in coldfusion 10. For some reason the labels on Y-axis are too crowded. Granted they are long texts (not more than 100 characters though), they should still appear on single lines instead of wrapping. Here is the…
Aamir
  • 791
  • 3
  • 15
  • 28
1
vote
1 answer

Add a "Target Line" to a Coldfusion 8 CFChart Bar Graph

I have a Coldfusion CfChart Bar Graph, that has X-Axis = Questions, and Y-Axis = Scores (0-100), but what I want to do is add a a Target Score Line on the graph, that goes across the X-Axis at the Y-Axis 85 Mark. Is this possible at all? I noticed…
1
vote
1 answer

CFCHART - How do I get the Y-Axis to start at 1 instead of 0

Here is the example style I am using:
1
vote
1 answer

CFCHART - How do I get the Y-Axis label to show on the right side only?

I am using cfchart and I cannot figure out how to get the Y-Axis to only show on the right side. I have opened up the web charts editor in the coldfusion/charts directory without any luck. I found this link that shows 2 axis but it did not help
1
vote
1 answer

CF11 CFChart pie, labelformat="percent" not displaying %

How do I display a % with the value. labelForms="percent" doesn't seem to work, its clunky adding it to the item, am I missing a way to format it?:
mctobey
  • 31
  • 4