cfchart seriesplacement="stacked" CFMX7 problems

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default cfchart seriesplacement="stacked" CFMX7 problems

    Hi,

    I upgraded our server over the weekend to MX7 enterprise. I have a problem
    with charts now that do not work as they did in MX6.1. An example is this one
    and the problem seems to be with the seriesplacement="stacked" parameter and
    only one column of information being returned. So imagine you have a stacked
    chart of information and clicking to drill down will give you the part of the
    chart you click on in more detail. This now does not work.

    <cfchart
    seriesplacement="stacked"
    format="flash"
    yaxistitle="Number"
    xaxistitle="Departments"
    showxgridlines="yes"
    showygridlines="yes"
    show3d="no"
    showborder="no"
    font="Arial"
    fontbold="no"
    fontitalic="no"
    sortxaxis="yes"
    showlegend="no"
    Chartwidth="450"
    chartheight="300"
    scalefrom="0"
    scaleto="#chartsize#"
    gridlines="#gridsize#"
    url="#currentpage#?dept=$ITEMLABEL$">

    <cfchartseries
    type="bar"
    query="chartdata"
    itemcolumn="dept"
    valuecolumn="count1"
    serieslabel="count1"
    seriescolor="##669999"
    paintstyle="plain"/>

    <cfchartseries
    type="bar"
    query="chartdata"
    itemcolumn="dept"
    valuecolumn="count2"
    serieslabel="count2 "
    seriescolor="##ffcc00"
    paintstyle="plain"/>

    <cfchartseries
    type="bar"
    query="chartdata"
    itemcolumn="dept"
    valuecolumn="count3"
    serieslabel="count3"
    seriescolor="##cc3333"
    paintstyle="plain"/>
    </cfchart>

    I have changed one or two pieces here so it does not compromise anything,
    however this is only the lables and valuecolumns.

    This worked Friday in MX6.1 and now in 7 it does not. I have tried a lot of
    things but all I get is a blank chart, lables show but no data. I have checked
    and the query is outputing data as expected.

    HELP!!!!

    Steve

    dentarthurdent Guest

  2. Similar Questions and Discussions

    1. Flash "movie" in CFMX7
      Please - Would like information onsubit to bring up a flash or other animation during a long query that would go away once the data loads in a...
    2. "diameter", "has_a_cycle" problems in Graph-0.76 module
      Hello all, I have some problems with these two functions in Graph : "diameter" and "has_a_cycle". "diameter" works only at the first time it's...
    3. <CfChart> & Flash format - Message:"ImageExpired..."
      Hi people Lot of people have faced this problem, the reason is the timeout in the caching engine of the Coldfusion keeps the charts for any request...
    4. CFChart - message: "Image Expired .."
      BUMP... I am having the same issue
    5. chart problem: set type="stacked"
      I wrote a cfc to return an array to flex. the content is : <cfset obj=StructNew()> <cfset obj = "1"> <cfset obj = "500"> <cfset obj = "400">...
  3. #2

    Default Re: cfchart seriesplacement="stacked" CFMX7 problems

    Anyone?
    dentarthurdent Guest

  4. #3

    Default Re: cfchart seriesplacement="stacked" CFMX7 problems

    They had a serious step back in the CFCHART tag between 6.1 and 7. :| They
    are working on a TechNote.

    In another thread on this forum there was a tenative release of a TechNote on
    these issues due last week per Prayank. Search "Advanced Techniques" for
    cfchart and you will see lots of issue with MX 7 and CFCHART. Hopefully, soon
    they will have hotfixes.

    realbeaux 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