Dollar sign not displaying with cfchartlabelformat=currency

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

  1. #1

    Default Dollar sign not displaying with cfchartlabelformat=currency

    Environment:
    ColdFusion MX 6.1 (6,1,0,83762) on JRun 4 w/ Updater 4
    Solaris 9
    Sun Java version 1.4.2-b28 (default installed version w/ CFMX and Jrun)

    Description:
    Regardless of format (flash, jpeg, png), and regardless of font (arial, times,
    courier), when labelformat is set to "currency" the generated graph doesn't
    display the dollar signs, instead it's a square (as if it's a font problem).

    You can see an example of the generated graph (this one in jpeg with courier
    font), [url]http://www.hubbach.com/cfGraph.jpg[/url].

    I appreciate any input anyone might have in correcting this problem.

    Kronin555 Guest

  2. Similar Questions and Discussions

    1. CodeHints and dollar sign ($) problem
      Hi for everyone, I?m developing a extension to add CodeHints to the freeDOM.js (it?s a brazilian DOM Library) and I?m having problens when I use...
    2. Is it best to use Currency or Number for dollar values?
      I have been using Currency as the data type of choice for allowing clients to update dollar values (rate, fee, price) into an MS Access database. It...
    3. [OT] History of the dollar sign [Was: [OT] Aesthetics of @ and $;]
      Alex, Interesting. I have never heard it suggested that the Malatesta "logo" was the inspiration for the dollar sign. Do you have any...
    4. A free dollar sign shape for ps6?
      Hello, I've looked on the net and in the adobe expert center looking for a free dollar sign shape for ps6 and can't find any that work for ps6. ...
    5. In some searches on web site the items will come back with a different dollar sign than the US $
      In some searches on our web site the items will come back with a different dollar sign than the US $ symbol why is that? MC *** Sent via...
  3. #2

    Default Re: Dollar sign not displaying with cfchartlabelformat=currency

    Anyone? Noone else has seen this? Guess I'll try it in General.
    Kronin555 Guest

  4. #3

    Default Dollar sign not displaying with cfchartlabelformat=currency

    Environment:
    ColdFusion MX 6.1 (6,1,0,83762) on JRun 4 w/ Updater 4
    Solaris 9
    Sun Java version 1.4.2-b28 (default installed version w/ CFMX and Jrun)

    Description:
    Regardless of format (flash, jpeg, png), and regardless of font (arial, times,
    courier), when labelformat is set to "currency" the generated graph doesn't
    display the dollar signs, instead it's a square (as if it's a font problem).

    You can see an example of the generated graph (this one in jpeg with courier
    font), [url]http://www.hubbach.com/cfGraph.jpg[/url].

    I appreciate any input anyone might have in correcting this problem.

    Kronin555 Guest

  5. #4

    Default Re: Dollar sign not displaying with cfchartlabelformat=currency

    can you please post the code ?

    Prayank
    prayank Guest

  6. #5

    Default Re: Dollar sign not displaying with cfchartlabelformat=currency

    Happily. Here you go:

    <cfchart chartwidth="800"
    chartheight="600"
    labelformat="currency"
    format="jpeg"
    showlegend="Yes"
    show3d="Yes" xoffset=".02" yoffset=".05"
    databackgroundcolor="EEEEEE" showxgridlines="no" gridlines="10"
    showygridlines="yes">
    <cfloop index="val1" from="1" to="3">
    <cfchartseries type="line" serieslabel="Test #val1#" paintstyle="plain">
    <cfloop from="10" to="20" index="val2">
    <cfchartdata item="#val2#" value="#val2# - #val1#">
    </cfloop>
    </cfchartseries>
    </cfloop>
    </cfchart>

    This is what I get: [url]http://www.hubbach.com/graphTest.jpeg[/url]

    I'm assuming it's a server issue. My environment is listed in my original
    post. I posted it to Advanced, and didn't get a response. Thanks for any help
    you can provide.

    Kronin555 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