CFChart Gridlines

In my chart I have values ranging from 100 to 1000. I want to
place a solid horizontal line at value 750 that extends across the
entire chart. Is this possible?
Also, Is it possible to make unique URL links for each of the
values in the legend?
I am using CF8
Any help is appreciated.
Thanks
-Z-

Hi Zanghor ,
I don't believe it is possible using the cfchart tag. If you
look under
c:\coldfusion8\charting there is a .bat file called
webcharts.bat as well as a userguide. If you know your way around
java a bit you can bypass the cfchart tag entirely and use the full
power of the webcharts api yourself.
I am currently doing something similar using an opensource
charting library and I think I may have to try and provide that
feature in the custom tag I am building.

Similar Messages

  • Cfchart scaleto still doesn't work in CF8?

    I saw numerous posts on here and other forums about how the
    'scaleto' attribute in cfchart doesn't work right in CF7. But, I'm
    having the same problems with CF8. It still hasn't been fixed?
    I'm following along with Ben Forta's CF8 WACK in chapter 16
    listing 16.4. The data is from his ows database. There is actually
    an error in his code, where the 'scaleto' is set to 1500000, but
    the highest value from the database goes to '800000000', so I
    changed the 'scaleto' to '1000000000'. The crazy thing is, figure
    16.4 in the book shows the upper limit at 1 billion, just like it's
    supposed to work, but it doesn't work for me.
    I saw another post that said it worked fine when they removed
    the labelformat="currency" attribute, and sure enough, when removed
    it works just fine (albeit without the proper formatting). Does
    Adobe plan on ever actually fixing cfchart in any CF release?
    I'm using: CF801 developer edition on Vista (sp1) and the CF8
    internal web server. The code is below, but I'm assuming others
    have this book and have tried it? Anyone else still having issues
    with 'scaleto' in CF8?
    <!--- This defines the size and appearance of the chart
    --->
    <cfchart chartwidth="750"
    chartheight="450"
    yaxistitle="Budget"
    <!--- 3D appearance --->
    show3d="yes"
    xoffset=".04"
    yoffset=".04"
    <!--- Fonts and colors --->
    showborder="yes"
    foregroundcolor="003366"
    backgroundcolor="99dddd"
    databackgroundcolor="66bbbb"
    tipbgcolor="ffff99"
    fontsize="11"
    fontbold="yes"
    fontitalic="yes"
    <!--- gridlines and axis labels --->
    scalefrom="0"
    scaleto="1000000000"
    gridlines="6"
    showygridlines="yes"
    labelformat="currency">
    <!--- within the chart --->
    <cfchartseries type="bar"
    seriescolor="green"
    serieslabel="Budget Details:"
    query="chartquery"
    valuecolumn="amountbudgeted"
    itemcolumn="movietitle"
    paintstyle="light">
    </cfchart>

    I appear to have solved at least part of my problem. In addition to running the application firewall that's accessible from System Preferences, I run ipfw via the WaterRoof frontend. I have my firewall rules carefully crafted to my needs, including open ports for iTunes sharing, Bonjour, etc., all according to Apple's documentation.
    However, I don't see anywhere that they've documented this. On disabling the ipfw firewall, I found AirPlay worked again. Further testing and examination of the logs revealed that the Mac had been denying inbound packets coming from the AirPort Express and destined for UDP port 6002. So far I can find no official documentation saying iTunes or AirPlay uses that port, but allowing it through the firewall seems to have worked. This wasn't necessary in earlier versions of iTunes, and I'm not sure why it has changed now.
    I haven't tested streaming to the iPhone yet.

  • CFCHART - Line Chart Questions - CF7

    Hi Folks -
    I have a few questions about CFCHART in CF 7 and I am hoping
    that maybe different users can answer them:
    The following questions relate to creating a line chart.
    1) Is there a way to control the gridlines yourself, and not
    use the values for the lines that CFCHART presents?
    1A) If you have to accept the values that CFCHART gives you,
    is there a way to control the actual rounding of the values? Right
    now I am getting 3 decimal places, and I would prefer whole
    numbers.
    2) Is there an issue with displaying negative values? I have
    a chart that ranges from -255 to 100,000 and has 10 grid lines. But
    the -255 does not display. I get 0, the rest of the lines, except
    for the 9th line.
    <cfchart chartheight="300" chartwidth="450" font="@Arial
    Unicode MS" scalefrom="-255" scaleto="100000"
    gridlines="10" xaxistitle="Month" yaxistitle="Total"
    format="png" labelformat="number">
    <cfchartseries type="line" serieslabel="Review">
    <cfchartdata item="Jan" value="2569">
    <cfchartdata item="Feb" value="65535">
    <cfchartdata item="March" value="-57">
    <cfchartdata item="April" value="75778">
    <cfchartdata item="May" value="89955">
    <cfchartdata item="June" value="39898">
    <cfchartdata item="July" value="0">
    <cfchartdata item="August" value="12560">
    <cfchartdata item="Sept" value="-255">
    <cfchartdata item="Oct" value="767">
    <cfchartdata item="Nov" value="6868">
    <cfchartdata item="Dec" value="37352">
    </cfchartseries>
    </cfchart>
    Any and all questions and answers are appreciated.
    Thanks,
    Doug

    You can specify scaleFrom and scaleTo by hardoced values or
    dynamic variables and number of gridlines. If you not specified
    first two attributes, then by default, the minimum is 0 or the
    lowest negative chart data value, and the maximum is the largest
    data value.
    To avoid decimals in your case empirically find good
    combination for your scale, for example from - 500 to 10 000 and
    number of gridlines = 12.

  • Cfchart shows different output in 7.0.2 and 6.1

    We had a upgrade of CF MX server from 6.1 to 7.0.2 recently
    in an AIX platform. After the upgrade, CFCHART output is different
    than the one from the previous version. Please see the code below.
    BAR chart is shown as lines in new version that too with different
    colors.
    <html>
    <body>
    <cfchart Format="flash"
    chartHeight="250"
    chartWidth="400"
    showXGridlines = "no"
    showYGridlines = "yes"
    gridlines="5"
    xOffset="0"
    yOffset="0"
    dataBackgroundColor= "##CECFFF" showborder="no"
    font="Arial"
    fontsize="12" fontbold="no" fontitalic="no"
    labelFormat = "currency"
    show3D="yes" rotated="no" sortxaxis="no"
    showlegend="no"
    showmarkers="no"
    backgroundColor = "##CECFFF">
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Jun" value="100">
    </cfchartseries>
    </cfchart>
    <br>
    <cfchart Format="flash"
    chartHeight="250"
    chartWidth="400"
    showXGridlines = "no"
    showYGridlines = "yes"
    gridlines="5"
    xOffset="0"
    yOffset="0"
    dataBackgroundColor= "##CECFFF" showborder="no"
    font="Arial"
    fontsize="12" fontbold="no" fontitalic="no"
    labelFormat = "currency"
    show3D="yes" rotated="no" sortxaxis="no"
    showlegend="no"
    showmarkers="no"
    backgroundColor = "##CECFFF">
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 May" value="90">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Jun" value="70">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Jul" value="85">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 aug" value="100">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Sep" value="90">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Oct" value="70">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Nov" value="85">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Dec" value="100">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2006 Jan" value="90">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2006 Feb" value="70">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2006 Mar" value="85">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2006 Apr" value="100">
    </cfchartseries>
    </cfchart>
    </body>
    </html>

    anchalgupta181988 wrote:
    Is it possible to switch from iOS 7.0.2 to 6.1.3.
    Sorry... No... Downgrading is not supported by Apple.
    anchalgupta181988 wrote:
    Since I have updated my IPhone 4 iOS 6.1.3 to 7.0.2, my iPhone has started to hang and the processing has become slow.
    Try This...
    Close All Open Apps... Sign Out of Your Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430
    If no joy...
    Reset all settings
    Settings > General > Reset > Reset all Settings.
    This will return all iDevice settings to factory defaults... you will not lose any data.... But you will have to re-enter all of the device settings.
    If the issue persists...
    Connect to iTunes on the computer you usually Sync with and Restore
    http://support.apple.com/kb/HT1414
    Make sure you have the Latest Version of iTunes (v11) Installed on your computer
    iTunes free download from www.itunes.com/download
    Some Other Tips Here...
    http://osxdaily.com/2013/09/23/ios-7-slow-speed-it-up/
    http://osxdaily.com/2013/09/19/ios-7-battery-life-fix/

  • X axis gridline problem

    When I used CFChart on coldfusion 6.1 the chart displayed the
    xaxis grid properly i.e. it displayed all the results in each
    category, put in a gridline, then showed the next category, put in
    a gridline etc. Now however in Coldfusion 7 the gridline is
    appearing in the middle of the category which is splitting up
    results in the same category. Is there a way to get coldfusion 7 to
    move the xaxis gridline?
    Is there anywhere I can upload an image to better illustrate
    the problem?

    Hi the code for the chart is below. It might be a bit
    confusing as it is looping through a list so that I can have
    multiple staffmembers displayed on the one chart. It just seems
    weird to me that it worked fine on CF 6 but shows different on CF
    7.
    Appreciate any help!
    <cfchart format="png" chartwidth="698"
    showxgridlines="yes" showborder="no" xaxistitle="Rating"
    yaxistitle="No of Customers" show3d="no" sortxaxis="no"
    gridlines="#mygridlines#" seriesplacement="cluster"
    showlegend="yes" >
    <cfset counterlist = 1 >
    <cfloop list="#StaffList#" index="y">
    <cfchartseries type="#newChartType#" serieslabel="#y#"
    >
    <cfloop list="Very poor, Could be better, Okay, Good,
    Excellent" index="x">
    <cfloop list="GetList" index="i">
    <cfchartdata item="#x#"
    value="#ListGetAt(Getlist,counterlist)#">
    </cfloop>
    <cfset counterlist = counterlist + 1>
    </cfloop>
    </cfchartseries>
    </cfloop>
    </cfchart>

  • Cfchart seriersPlacement

    I try to make two series stacked on each other, but the chart
    displays the two lines side by side. HOw can I get them stack on
    each other? Thanks in advance.
    Here is my code:
    <cfquery name="getrec" datasource="testdata">
    Select * from charttest where date_time='December'
    order by salinity
    </cfquery>
    <cfquery name="getrec1" datasource="testdata">
    Select * from charttest where date_time='January'
    order by salinity
    </cfquery>
    <cfchart
    format = "jpg"
    xAxisTitle="Salinity"
    yAxisTitle="tem"
    font="Arial"
    gridlines=7
    showborder="yes"
    seriesPlacement = "stacked"
    chartHeight = "400"
    chartWidth = "500" >
    <cfchartseries
    type="line"
    query="getrec"
    valueColumn="tem"
    itemColumn="salinity"
    seriesColor="olive"
    paintStyle="plain"
    />
    <cfchartseries
    type="line"
    query="getrec1"
    valueColumn="tem"
    itemColumn="salinity"
    seriesColor="red"
    paintStyle="plain"
    />
    </cfchart>

    You can alter the default chart style (or create a new chart
    style) by editing the default.xml file in the
    CFROOT\charting\styles folder.
    I copied and changed the default.xml file and saved it as a
    new xml style file. I then invoke the new style using the
    <cfchart style="newstyle"... parameter where newstyle is
    the name of the new file.
    In the xml file itself, all you have to do is change the
    isInterpolated parameter in the <frameChart tag> from
    isInterpolated="true" to
    isInterpolated="false"

  • CFChart and checkboxes

    I have a page which allows an administrator to select which
    members of staff they want to see a report on. They can select as
    many staff members as they want by clicking the checkbox next to
    their name. When the form is submitted I would like to have a line
    chart displayed with all of the staff members values plotted. I can
    get it to work for one staff member but not for multiple
    selections. The code I have used to get one to work is:
    <cfquery datasource="#application.datasource#"
    name="getPoor">
    SELECT survey.#form.report#, survey.invoiceDate,
    survey.staffMember
    FROM survey
    WHERE survey.invoiceDate BETWEEN
    #LSParseDateTime(form.StartDate)# AND
    #LSParseDateTime(form.EndDate)# AND
    survey.staffMember='#form.staffMember# ' AND
    survey.#form.report#='Very poor'
    </cfquery>
    <cfquery datasource="#application.datasource#"
    name="getBetter">
    SELECT survey.#form.report#, survey.invoiceDate,
    survey.staffMember
    FROM survey
    WHERE survey.invoiceDate BETWEEN
    #LSParseDateTime(form.StartDate)# AND
    #LSParseDateTime(form.EndDate)# AND
    survey.staffMember='#form.staffMember# ' AND
    survey.#form.report#='Could be better'
    </cfquery>
    <cfset mygridlines = #getStaff.recordcount#+1>
    <cfchart format="png" chartwidth="688"
    scaleto="#getStaff.recordcount#" showxgridlines="yes"
    showygridlines="yes" showborder="no" xaxistitle="Rating"
    yaxistitle="No of Customers" show3d="no" sortxaxis="no"
    gridlines="#mygridlines#">
    <cfchartseries type="line" serieslabel="Customer Service"
    seriescolor="##0099FF">
    <cfchartdata item="Very Poor (#getPoor.recordcount#)"
    value="#getPoor.recordcount#">
    <cfchartdata item="Could be better
    (#getBetter.recordcount#)" value="#getBetter.recordcount#">
    </cfchartseries>
    </cfchart>
    I think I need a cfloop in there somewhere but I dont know
    where. Any help would be greatly appreciated.

    Not sure what you were meaning in the above post but I think
    I may have a solution. I now have a list that has all the
    information I want to plot on a graph:
    (0,0,0,1,0,0,0,0,1,0,0,1,0,2,1)
    The code below is supposed to run through the list and plot
    the first five numbers in the list as one staffmember and then the
    next five as the next staff memeber and so on. When I run the code
    below, the graph that is produced has the first two staff members
    plotted correctly but when it gets to the third it starts to plot
    the points in a separate graph next to the existing one. Is it
    possible that I have put the loops in the wrong place?
    <cfchart format="png" chartwidth="688"
    showxgridlines="yes" showygridlines="yes" showborder="no"
    xaxistitle="Rating" yaxistitle="No of Customers" show3d="no"
    sortxaxis="no" gridlines="5" seriesplacement="cluster">
    <cfset counterlist = 1 >
    <cfloop list="#form.staffmember#" index="y">
    <cfchartseries type="bar" serieslabel="#y#" >
    <cfloop list="Very poor, Could be better, Okay, Good,
    Excellent" index="x">
    <cfloop list="GetList" index="i">
    <cfchartdata item="#x#
    (#ListGetAt(Getlist,counterlist)#)"
    value="#ListGetAt(Getlist,counterlist)#">
    </cfloop>
    <cfset counterlist = counterlist + 1>
    </cfloop>
    </cfchartseries>
    </cfchart>

  • CFCHART with dates

    I am having a problem with getting dates to line up in the appropriate order in a CFCHART from 3 different queries. In other words, August dates might come before July dates on the chart. Ideally I would like to have these 3 queries as one query because the records I am accessing are all in the same table. That can be battle for another day once I resolve this issue. Hints would be helpful on the query dilemma.
    Just a little background:
    MSSQL database
    ColdFusion 9
    Each record has 3 bit datatype fields and a timestamp datatype field.
    What I am trying to do is loop over the selected records and count each bit that is 'true'. Here is what I have.
                        <!--- Get record bit 1 --->
                        <cfquery ="Datasource" name="record1q" cachedwithin="#CreateTimeSpan(0, 0, 10, 0)#">
                            SELECT Month(myDate) AS DateMonth, Day(myDate) AS recordDate,
                                    Year(myDate) AS DateYear, COUNT(record1bit) AS record1bitCount
                            FROM myTable
                            WHERE record1bit = 'true'
                            GROUP BY Month(myDate), Day(myDate), Year(myDate), record1bit
                        </cfquery>
                        <!--- Get record bit 2 --->
                        <cfquery ="Datasource" name="record2q">
                            SELECT Month(myDate) AS DateMonth, Day(myDate) AS recordDate,
                                    Year(myDate) AS DateYear, COUNT(record2bit) AS record2bitCount
                            FROM myTable
                            WHERE record2bit = 'true'
                            GROUP BY Month(myDate), Day(myDate), Year(myDate), record2bit
                        </cfquery>
                        <!--- Get record bit 3 --->
                        <cfquery ="Datasource" name="record3q">
                            SELECT Month(myDate) AS DateMonth, Day(myDate) AS recordDate,
                                    Year(myDate) AS DateYear, COUNT(record3bit) AS record2bitCount,
                                    record3bit
                            FROM myTable
                            WHERE record3bit = 'true'
                            GROUP BY Month(myDate), Day(myDate), Year(myDate), record2bit, record3bit
                        </cfquery>
                        <!--- Reformat the generated numbers. --->
                        <cfloop index = "i" from = "1" to = "#record1q.RecordCount#">
                        <cfset record1q.record1bitCount[i] = record1q.record1bitCount[i]>
                        <cfset record1q.recordDate[i] = record1q.DateMonth[i] & "/" & record1q.recordDate[i] & "/" & record1q.DateYear[i]>
                        </cfloop>
                        <!--- Reformat the generated numbers. --->
                        <cfloop index = "i" from = "1" to = "#record2q.RecordCount#">
                        <cfset record2q.record2bitCount[i] = record2q.record2bitCount[i]>
                        <cfset record2q.recordDate[i] = record2q.DateMonth[i] & "/" & record2q.recordDate[i] & "/" & record2q.DateYear[i]>
                        </cfloop>
                        <!--- Reformat the generated numbers. --->
                        <cfloop index = "i" from = "1" to = "#record3q.RecordCount#">
                        <cfset record3q.record2bitCount[i] = record3q.record2bitCount[i]>                   
                        <cfset record3q.recordDate[i] = record3q.DateMonth[i] & "/" & record3q.recordDate[i] & "/" & record3q.DateYear[i]>
                        </cfloop>
                                <cfchart showlegend="yes"
                                    format="flash"
                                    backgroundColor="white"
                                    xAxisTitle="Date"
                                    yAxisTitle="Activity"
                                    font="Arial"
                                    gridlines=6
                                    showXGridlines="yes"
                                    showYGridlines="yes"
                                    showborder="yes"
                                    show3d="yes"
                                    chartwidth="500" title="Total Views and Shares"
                                >
                                <cfchartseries
                                    type="bar"
                                    query="record1q"
                                    valueColumn="record1bitCount"
                                    itemColumn="recordDate"
                                    seriesColor="gray"
                                    paintStyle="plain"
                                    seriesLabel="record1bit">
                                </cfchartseries>   
                                <cfchartseries
                                    type="bar"
                                    query="record2q"
                                    valueColumn="record2bitCount"
                                    itemColumn="recordDate"
                                    seriescolor="FF9900"
                                    paintStyle="plain"
                                    seriesLabel="record2bit">
                                </cfchartseries>
                                <cfchartseries
                                    type="bar"
                                    query="record3q"
                                    valueColumn="record2bitCount"
                                    itemColumn="recordDate"
                                     seriescolor="000099"
                                    paintStyle="plain"
                                    seriesLabel="record3qbit Viewed">
                                </cfchartseries>   
                            </cfchart>
    I know it is a little sloppy but it is a good start. Any help will be appreciated.

    Dan, It does make sense. What I had previously was something similar to this:
                        <!--- Get record bits --->
                        <cfquery ="Datasource" name="recordq" cachedwithin="#CreateTimeSpan(0, 0, 10, 0)#">
                            SELECT Month(myDate) AS DateMonth, Day(myDate) AS recordDate,
                                    Year(myDate) AS DateYear, COUNT(record1bit) AS record1bitCount,
                                    COUNT(record2bit) AS record2bitCount, COUNT(record3bit) AS record3bitCount
                            FROM myTable
                            WHERE record1bit = 'true'
                            GROUP BY Month(myDate), Day(myDate), Year(myDate), record1bit, record2bit, record3bit
                        </cfquery>
    The problem with this was that all the records were grouped by date but was not totaled on one date line on the output. It also causes issues with the WHERE statement. I could have record1bit = 'true' but record2bit = 'false'. I have basic SQL skills so I generally gravitate to dealing with the output which is not always the best solution. A SQL solution would be ideal if you had one. Otherwise, grouping the output seems to have me at a roadblock with my ability. If there is no SQL solution and I could use this query, I would be thrilled since it would reduce the traffic from the database. Thanks for your help.

  • CFCHART gives different display in 6.1 and 7.0.2

    We have CFMX 7.0.02 installed on AIX plat form. This was
    recently upgraded from MX 6.1. After the upgrade the CF chart
    display doesn't work fine. The same code give fifferent display in
    2 versions. The Bar chat is shown as lines and the X axis entries
    are missing some times.
    The code is shown below. The same code gives barchart in 6.1
    and shows lines in 7.0.2. The colors are different in both the
    versions.
    <html>
    <body>
    <cfchart Format="flash"
    chartHeight="250"
    chartWidth="400"
    showXGridlines = "no"
    showYGridlines = "yes"
    gridlines="5"
    xOffset="0"
    yOffset="0"
    dataBackgroundColor= "##CECFFF" showborder="no"
    font="Arial"
    fontsize="12" fontbold="no" fontitalic="no"
    labelFormat = "currency"
    show3D="yes" rotated="no" sortxaxis="no"
    showlegend="no"
    showmarkers="no"
    backgroundColor = "##CECFFF">
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Jun" value="100">
    </cfchartseries>
    </cfchart>
    <br>
    <cfchart Format="flash"
    chartHeight="250"
    chartWidth="400"
    showXGridlines = "no"
    showYGridlines = "yes"
    gridlines="5"
    xOffset="0"
    yOffset="0"
    dataBackgroundColor= "##CECFFF" showborder="no"
    font="Arial"
    fontsize="12" fontbold="no" fontitalic="no"
    labelFormat = "currency"
    show3D="yes" rotated="no" sortxaxis="no"
    showlegend="no"
    showmarkers="no"
    backgroundColor = "##CECFFF">
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 May" value="90">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Jun" value="70">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Jul" value="85">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 aug" value="100">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Sep" value="90">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Oct" value="70">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Nov" value="85">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Dec" value="100">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2006 Jan" value="90">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2006 Feb" value="70">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2006 Mar" value="85">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2006 Apr" value="100">
    </cfchartseries>
    </cfchart>
    </body>
    </html>

    Hi Ken,
    Thanks for the response. Couple follow up questions:
    As far as the migration/configuration wizard goes, here is
    what I am looking to migrate:
    - Data Sources
    - custom tags
    - email server setup
    - missing template settings
    - Java and JVM -- Server Settings
    I think that's it. So, given that, what would the below
    adminConfig.xml need to look like? Again, I am upgrading from MX6.1
    to MX7.0.2. Let me take a stab at it:
    <setupconfig>
    <runsetupwizard>true</runsetupwizard>
    <runmigrationwizard>false</runmigrationwizard>
    <runmxmigrationwizard>true</runmxmigrationwizard>
    <migratecf5>false</migratecf5>
    <migratecf6>true</migratecf6>
    <setupoptions>
    <sampleapps>false</sampleapps>
    <odbc>true</odbc>
    <enablerds>false</enablerds>
    </setupoptions>
    </setupconfig>
    My second question might be irrelevant, but I am curious. The
    way it is setup now, I can't get into the CF Admin page (since the
    uninstall of CFMX7 removed it), but I know I am running 6.1 because
    I tried to hit a test page with a <CFDOCUMENT> tag, and CF
    said it didn't know what that tag was. But, when I go into IIS and
    look a the Application Configuration for .cfm extensions, it has a
    mapping to C:\CFusionMX7\runtime\lib\wsconfig\jrun_iis6.dll. Any
    ideas?
    Thanks so much for your help.
    -tom

  • Why do I get blue gridlines in photos that I print from Lightroom 4 on my Epson 3540 printer?

    I am using Lightroom 4, and I print on a Workforce 3540 Epson printer. In this program, but not in any other (such as iPhoto), I get blue grid lines in the background of each photo. How do I remove these gridlines?

    This is a user forum I feel you need to deal with Adobe customer services or support chat did not work in you case.

  • SSRS - overlap in text and gridlines (rendering to .pdf)

    I have searched everywhere to find the answer, but I cannot find it. I have a table where numbers have been outlined to the right. The table has a borderstyle black with 1pt and padding with 2pt. When rendering this table to .pdf the numbers disappear behind
    the gridlines (with or without gridlines). Some do, some don't. See also the included image.
    Can someone help me with this? Increasing padding does not work. Adding spaces does not work. Outlining to the center or left, yes that works, but I need it outlined to the right.
    Is there someone who can help me to fix this?
    Best regards,

    Hi _Montinio,
    According to your description, when you export the report to PDF file, the end of numbers in each cell are hidden.
    In Reporting Service, if values are numeric, it will automatically right aligned in textbox. And the padding for textbox is set to 2pt by default. As we tested in our environment, the textbox works properly. Please refer to screenshots blow:
    In your scenario, according to your screenshot, it seems like you don’t set padding to top and left. So I would like to know some detail information about your report design. If possible, please provide some screenshots about results both in BIDS and PDF
    render.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu

  • How to create trend line in cfchart?

    I can create a scatter chart in cfchart - but I do not know how to create a linear regression trend line in the same chart as a second data series. Kodemonki provided an answer in a forum discussion a few years ago (http://forums.adobe.com/message/192848#192848) - but I am not able to make it work (I have a dangerously small knowledge of coldfusion and statisitcal formulas). Can someone tell me where i put in my to data query variables - such as for a query that gives results for two data fields, "Item1" and "Item2".
    Here is Kodemonki's solution:
    <!--- The min setting is a preference based on how you want the data to be displayed. --->
    <!---<cfset min = arrayMin(grabData["value"]) - 5>--->
         <cfset min = 0>
         <cfset max = ceiling(arrayMax(grabData["value"])) + 1>
         <cfset n = grabData.recordCount>
         <cfset sum_x = 0>
         <cfset sum_x2 = 0>
         <cfset sum_xy = 0>
         <cfloop from="1" to="#grabData.RecordCount#" index="i">
              <cfset sum_x = sum_x + i>
              <cfset sum_xy = (i*grabData.value[i]) + sum_xy>
              <cfset sum_x2 = sum_x2 + (i*i)>
         </cfloop>
         <cfset sum_y = arraySum(grabData["value"])>
         <cfset slope = round(((n*sum_xy) - (sum_x*sum_y))/((n*sum_x2) - (sum_x*sum_x)))>
         <cfset intercept = round((sum_y - (slope*sum_x))/n)>
         <cfset best_fit = QueryNew("id, value")>
         <cfloop from="1" to="#grabdata.RecordCount#" index="i">
              <cfset queryAddRow(best_fit)>
              <cfset value = round((slope*i) + intercept)>
              <cfset QuerySetCell(best_fit, "id", grabData.xlabel[i])>
              <cfset QuerySetCell(best_fit, "value", value)>
         </cfloop>
         <cfchart scalefrom="#min#" scaleto="#max#" title="#GrabDatapointInfo.label#" format="jpg" chartHeight="450" chartwidth="500" xaxistitle="Month/Year">
              <cfchartseries type="line" query="best_fit" valuecolumn="value" itemcolumn="id"/>
              <cfchartseries type="line" query="grabData" valuecolumn="value" itemcolumn="xlabel"/>
         </cfchart>

    Have you read the docs for CFCHART, CHCHARTSERIES, etc?  Did you mess around with the example code sufficiently so you understand how the tags work?
    http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-79 30.html
    Adam

  • Is there any way to darken the gridlines in iCal?  I'm using it on a Macbook with Lion and find it difficult to see the gridlines on the iCal display.

    Is there any way to darken the gridlines in iCal?  I'm using it on a Macbook with Lion and find it difficult to see the gridlines on the iCal display.

    ''Problem:'' For whatever reason, NoScript is stopping Runescape Community Toolbar from working properly which freezes your first Firefox window.
    ''Fix:'' Uninstall the toolbar. Disable NoScript. Install the toolbar. Add your RS account to it and make sure it works, then Enable NoScript again.
    EDIT: Posted a fix earlier that was wrong. Corrected to the right one, sorry ^_^ Answer was on Runescape Forums.

  • How do I change the font size of a data point label on a cfchart?

    I know I can control the x axis and y axis font with the font="" attribute of the cfchart tag.  But I want to change the font size of the data label in the chart series.  Is that possible?

    To specifically and fully answer your question, no, you absolutely cannot change the “font size” as a function of print.
    First of all, there isn't a single “font size” associated with a PDF file (and we assume you are referring to a PDF file since this is an Acrobat forum).
    Secondly, PDF is a final form file format meaning that the content is static in terms of location, size, etc. on the page. To change the point size of any particular text, you really need to go back to the source document and make the changes there.
              - Dov

  • How to create a trend line in cfchart?

    I  can create a scatter chart in cfchart - but I do not know how to create  a linear regression trend line in the same chart as a second data  series.
    Kodemonki provided an answer in a forum discussion a few years  ago (http://forums.adobe.com/message/192848#192848).
    But I am not able to make it work (I have a dangerously small  knowledge of coldfusion and statisitcal formulas).
    Can someone tell me  where i put in my to data query variables - such as for a query that  gives results for two data fields, "Item1" and "Item2".
    Thanks!
    Here is Kodemonki's solution:
    <!--- The min setting is a preference based on how you want the data to be displayed. --->
    <!---<cfset min = arrayMin(grabData["value"]) - 5>--->
         <cfset min = 0>
         <cfset max = ceiling(arrayMax(grabData["value"])) + 1>
         <cfset n = grabData.recordCount>
         <cfset sum_x = 0>
         <cfset sum_x2 = 0>
         <cfset sum_xy = 0>
         <cfloop from="1" to="#grabData.RecordCount#" index="i">
              <cfset sum_x = sum_x + i>
              <cfset sum_xy = (i*grabData.value[i]) + sum_xy>
              <cfset sum_x2 = sum_x2 + (i*i)>
         </cfloop>
         <cfset sum_y = arraySum(grabData["value"])>
         <cfset slope = round(((n*sum_xy) - (sum_x*sum_y))/((n*sum_x2) - (sum_x*sum_x)))>
         <cfset intercept = round((sum_y - (slope*sum_x))/n)>
         <cfset best_fit = QueryNew("id, value")>
         <cfloop from="1" to="#grabdata.RecordCount#" index="i">
              <cfset queryAddRow(best_fit)>
              <cfset value = round((slope*i) + intercept)>
              <cfset QuerySetCell(best_fit, "id", grabData.xlabel[i])>
              <cfset QuerySetCell(best_fit, "value", value)>
         </cfloop>
         <cfchart  scalefrom="#min#" scaleto="#max#" title="#GrabDatapointInfo.label#"  format="jpg" chartHeight="450" chartwidth="500"  xaxistitle="Month/Year">
              <cfchartseries type="line" query="best_fit" valuecolumn="value" itemcolumn="id"/>
              <cfchartseries type="line" query="grabData" valuecolumn="value" itemcolumn="xlabel"/>
         </cfchart>

    Have you read the docs for CFCHART, CHCHARTSERIES, etc?  Did you mess around with the example code sufficiently so you understand how the tags work?
    http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-79 30.html
    Adam

Maybe you are looking for

  • Icons revert to generic

    My Appleworks 6.2.9 icons are usually a miniature of the calendar or image created, now they revert to the generic Appleworks application icon whenever I change the calendar, etc. I have repaired permissions, run Cocktail, restarted and rebooted, tra

  • Command-R not working on Start-up

    I need to do a clean install of Lion on my iMac and I'm using the Wireless Bluetooth Keyboard. But on Start-up using the Command-R function, it still takes me to the Login screen. I've tried it with another bluetooth keyboard, but still no solution.

  • 6120 - Blank screen in power saver mode

    Hi everybody! I have recenty become a proud 6120 owner (my first symbian :-)), and I have 1 question: how can I prevent in power saver mode, my screen to go complety blank??? I would like to see the status of my phone (time, missed calls, messages, e

  • Macbook Pro 2010 Model Keyboard Issue - Middle keys not working

    Hi. I have a Macbook Pro 2010 model, for no other reason other than my cat sitting on it (tiny cat, very dry...) the middle row of keys (A,S,D,F,G,H,J,K,L) all stopped working, CAPS still works, as well as : ; " ' and the enter/return key. I've done

  • My iPhone 4 screen changes colors, how can I fix it?

    I was getting into my bed and as I was lifting up my covers my iPhone 4 was aside. Not knowing this I lifted up my covers and it flew to the floor landing on its back. But it crashed down really hard. I picked it up and turned it on only to see that