mx7 cfchart not displaying data

Ask a Question related to Macromedia ColdFusion, Design and Development.

  1. #1

    Default mx7 cfchart not displaying data

    i have a mx7 cfchart in flash format that has been displaying fine for about a
    month. Today there are no bars being displayed. the chart is quite simple
    and uses a query in the cfchartseries tag to define the data. on the chart,
    the item column and the value column are scaled and displayed properly. the
    only thing missing are the bars. i've tried it in jpg/png formats with the
    same results. also bounced the server.

    i know it's 'seeing' the query data because the x and y axis are correct.

    it's quite odd that it worked fine for weeks and today it bombs.


    <cfchart format="flash"
    backgroundcolor="##ffffe7"
    tipbgcolor="FFFFe7"
    chartheight="300"
    yaxistitle="Hits"
    xaxistitle="Week Begining" >
    <cfchartseries query="get_page_stats"
    itemcolumn="wps_beg_dt"
    valuecolumn="wps_nbr_hits"
    type="bar" ></cfchartseries>
    </cfchart>

    thanks

    jas5on Guest

  2. Similar Questions and Discussions

    1. CFChart Not Displaying
      I'm playing around with the cfchart. One problem I'm having is. 1 The cfm code works on my production server, however it's when I try it on my...
    2. $ not displaying using cfchart
      Hello, I have a developer who is using cfchart. On one of the prod servers the $ sign is displayed. On the other server, the $ does not display. ...
    3. CFCHART and displaying of images
      :confused; I am attempting to use cfchart on MX 6.1, but it doesn't work on my production box. However, I have MX installed on my personal server...
    4. CFCHART not showing all data points
      I'm using CFCHART to create a simple line graph with text values (which happen to be times) on the X axis and number values on the Y axis. I've hit...
    5. Displaying Values in CFChart Graph
      We are generating a graph with CFChart in a bar format. Is it possible to display the numeric value from the ValueColumn attribute on the actual...
  3. #2

    Default Re: mx7 cfchart not displaying data

    never mind.........i was blowing out the bars with too high of a datavalue. hopefully they'll have the scalefrom/scaleto bug fixed soon
    jas5on Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139