cfchart rotate x axis labels

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

  1. #1

    Default cfchart rotate x axis labels

    This should be very easy to do. I want my x axis labels to be horizontial not vertical.
    How do I do this?

    Thanks
    trainmom
    mynewnameforthisforum Guest

  2. Similar Questions and Discussions

    1. rotate camera along an axis
      hi i want to change only the X axis in the rotation properties of a camera .how can i do this. can anyone help me. thanking you all in advance...
    2. Help w/ CFChart and labels
      Hi folks, I'm using CF 7 and trying to get a chart finished up. Its all working except the labels along the Y axix. Because of the length of...
    3. cfchart labels
      I am missing something here. In my chart, it is not putting the labels under the bars. There is is 3 bars, and each should have a label along the...
    4. trying to rotate a model using two diff axis
      Im banging my head against this one. Essentially, im attempting to turn a wheel by rotating a model along one axis whilst steering with the...
    5. rotate just the axis of models
      Hi, I need to rotate a models pivot point. I've tried to store the positons of every single vertex, rotate the model, and then write the stored...
  3. #2

    Default Re: cfchart rotate x axis labels

    If you are using 7, I think the best (and 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="true" orientation="vertical" />
    <titleStyle font="Arial-12-bold" isMultiline="false" />
    </xAxis>


    You can also make your own style and do this.


    Xenotrim 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