Value in legend

I have an pie graph and i want to see the value (50 and 40) in legend. This is possible?
For example of legend:
(blue) Open : 50
(red) Close: 40
Thank

Add a table view in the compound layout and position it below the chart. To indicate color, you may add a column in the table as -
case when open then blue .........end
or
add narrative view as
(@3) nonbraking space @1 : nonbraking space @2 line break
where 3 is the color column

Similar Messages

  • Display values in legend obiee 11g

    Dear All,
    Is there a way to display values in legend for obiee 11g graph? I could not find that features. It only has show or do not show the legend.
    Thanks,
    Sushil

    is it not something like
    select columnA from SubjectAreat where
    columnA is not like '%A%'
    and columnA is not like '%B%'

  • IChart & Fixed Query /w scooter values in legend (xMII 11.5.1)

    Hello all, this is my first post here and I hope that I can get some help.
    Environment Details:
    Server: Windows 2003, xMII 11.5.1, Java Plugin 1.4.2_13
    Client: Windows XP, IE6, Java Plugin 1.4.2_13
    My problem is that I cannot get scooter values to show in the legend with a simple iChart & Fixed Query.  At least not without more problems.  Let me explain...
    The following chart & query does not show scooter values in the legend (values are shown in the upper left hand corner for the selected item though):
    <applet name="ProcessDataApplet" height="421" width="1259" code="iChart" archive="illum8.zip" codebase="/Illuminator/Classes" "mayscript="true">
    <param name="Mode" value="FixedQuery" />
    <param name="QueryTemplate" value="Allvac/AMP/QueryTemplate" />
    <param name="DisplayTemplate" value="Allvac/AMP/DisplayTemplate" />
    <param name="Server" value="MONROE_VAR_ARMS" />
    <param name="Query" value="SELECT [TIMESTAMP],[ACTUAL_FURNACE_CURRENT],[ACTUAL_FURNACE_VOLTAGE],[RAM_VELOCITY] FROM [PRODUCT_HEADER] INNER JOIN [PRODUCT_AUDIT_DATA] ON ([PRODUCT_HEADER].[PRODUCT_KEY] = [PRODUCT_AUDIT_DATA].[PRODUCT_KEY]) WHERE [PRODUCT_HEADER].[PRODUCT_KEY] = '525cb615-1b15-4b07-aa7c-9f1df9c47ba3' AND [TIMESTAMP] >= '02/27/2008 03:21:22' AND [TIMESTAMP] <= '02/27/2008 15:14:34' ORDER BY [TIMESTAMP] ASC" />
    <param name="RowCount" value="8558" />
    <param name="ChartType" value="Line" />
    <param name="AxisValueColumn" value="TIMESTAMP" />
    <param name="XAxisFontSize" value="10" />
    <param name="LegendWidth" value="40" />
    <param name="LegendFontSize" value="10" />
    <param name="GlobalServerScaling" value="false" />
    <param name="ZeroBasedScale" value="true" />
    <param name="UseScreenResolution" value="false" />
    <param name="EnableDoubleClickRefresh" value="false" />
    <param name="ShowMouseTracking" value="true" />
    <param name="ShowScooter" value="true" />
    <param name="AutoScale.1" value="true" />
    <param name="Decimals.1" value="2" />
    <param name="AutoScale.2" value="true" />
    <param name="Decimals.2" value="2" />
    <param name="MinRange.3" value="0.00000" />
    <param name="MaxRange.3" value="0.40000" />
    <param name="Decimals.3" value="2" />
    </applet>
    I went one step further to see if I could get the scooter values shown in the legend.  I modified the query to use the StartDate & EndDate placeholders like so:
    SELECT [TIMESTAMP],[ACTUAL_FURNACE_CURRENT],[ACTUAL_FURNACE_VOLTAGE],[RAM_VELOCITY] FROM [PRODUCT_HEADER] INNER JOIN [PRODUCT_AUDIT_DATA] ON ([PRODUCT_HEADER].[PRODUCT_KEY] = [PRODUCT_AUDIT_DATA].[PRODUCT_KEY]) WHERE [PRODUCT_HEADER].[PRODUCT_KEY] = '525cb615-1b15-4b07-aa7c-9f1df9c47ba3' AND [TIMESTAMP] >= [SD] AND [TIMESTAMP] <= [ED] ORDER BY [TIMESTAMP] ASC
    I also added my initial StartDate & EndDate parameters:
    <param name="StartDate" value="02/27/2008 03:21:22" />
    <param name="EndDate" value="02/27/2008 15:14:34" />
    NOW the scooter values are shown in the legend, which is great, but all of a sudden the zoom is broken.  When I select an area to zoom and then click the zoom button, it zooms to a completely different area of the chart.  This is worse than my original problem.
    Can someone please help me out with this?  I have a feeling I'm leaving out something simple, but I can't find it.
    By the way, my display template and query template used in this example are empty so that I could show all parameters to you.
    Thanks,
    Bryan

    I removed scaling and accuracy parameters.  I also removed some parameters that controlled styling.  I added global auto scaling. 
    Now X & Y are updating properly on zoom.  Although unzoom isn't working for start date and end date.  They stay at the zoomed date.  The post data also shows the zoomed dates being sent to the server after unzoom.  The Y range updates properly on unzoom.
    Here is my updated applet html:
    <applet name="ProcessDataApplet" height="421" width="1259" code="iChart" archive="illum8.zip" codebase="/Illuminator/Classes" "mayscript="true">
    <param name="Mode" value="FixedQuery" />
    <param name="InitialUpdate" value="true" />
    <param name="QueryTemplate" value="Allvac/AMP/QueryTemplate" />
    <param name="DisplayTemplate" value="Allvac/AMP/DisplayTemplate" />
    <param name="Server" value="MONROE_VAR_ARMS" />
    <param name="Query" value="SELECT [TIMESTAMP],[ACTUAL_FURNACE_CURRENT],[ACTUAL_FURNACE_VOLTAGE],[RAM_VELOCITY] FROM [PRODUCT_HEADER] INNER JOIN [PRODUCT_AUDIT_DATA] ON ([PRODUCT_HEADER].[PRODUCT_KEY] = [PRODUCT_AUDIT_DATA].[PRODUCT_KEY]) WHERE [PRODUCT_HEADER].[PRODUCT_KEY] = '525cb615-1b15-4b07-aa7c-9f1df9c47ba3' AND [TIMESTAMP] >= [SD] AND [TIMESTAMP] <= [ED] ORDER BY [TIMESTAMP] ASC" />
    <param name="RowCount" value="10000" />
    <param name="StartDate" value="02/27/2008 03:21:22" />
    <param name="EndDate" value="02/27/2008 15:14:34" />
    <param name="ChartType" value="Line" />
    <param name="GlobalAutoScale" value="true" />
    <param name="UseScreenResolution" value="false" />
    <param name="ShowMouseTracking" value="true" />
    <param name="ShowScooter" value="true" />
    <PARAM NAME="Trace" VALUE="true">
    </applet>
    This problem isn't making any sense to me.  The documentation makes it sound like showing the current values in the legend is as easy as setting ShowScooter = true.  This wasn't the case for me though.  I had to use the [SD] and [ED] placeholders in my fixed query before the values would show up in the legend.  But then zooming breaks.  It looks like we're heading in the right direction to get the zooming fixed, but at the cost of being able to scale each pen.
    The first thing you said to me in your first post was that I'm using a 3+ years old version of xMII.  Are you saying there is a good chance this is a bug?  I was pretty convinced from the beginning that this problem is a bug.  The customer I am working for set me up with an xMII 11.5.1 server because that is what they are using in production.  Is there an online document with a list of bug fixes between versions?  If this is a known bug in 11.5.1 then maybe I can get the go ahead to upgrade.

  • Pass Prompt values into Legend / '-ALL-' filter filters out all records

    Hi
    I have 2 questions for the same chart so I hope it's OK to add them in one post.
    Firstly I have created a chart & added three Select List filters which work fine, the query is below, problem is that when I change back to '-ALL-' I get no data, it has filtered out all records as no data matches the value of '-ALL-' does anyone know the code to get around this?
    My chart query;
    select null link, P_MONTH AS MONTH, SUM(CALLS) AS data
    from DATA.MAIN_DATA
    WHERE WAREHOUSE = :P1_WAREHOUSE
    AND ANS_UNANS = :P1_ANS_UNANS
    AND PRODUCT = :P1_PRODUCT
    GROUP BY P_MONTH
    As I will have several queries like the one above for different options on the same chart, I would like the Legend to show what the user has chosen each time the options are changed ie;
    Something like the bolded text in the query to display the chosen values in the legend;
    select null link, P_MONTH AS MONTH, SUM(CALLS) AS 'P1_WAREHOUSE' || 'P1_ANS_UNANS' || 'P1_PRODUCT'
    from DATA.MAIN_DATA
    WHERE WAREHOUSE = :P1_WAREHOUSE
    AND ANS_UNANS = :P1_ANS_UNANS
    AND PRODUCT = :P1_PRODUCT
    GROUP BY P_MONTH
    Any ideas/suggests?

    Thanks Andy
    I'm having some problems with applying this so it may be best if I show you how I've applied this code.
    Here's an example of my data on a made up 'EMP' table;
    ENAME     SAL     DEPTNO     DEPARTMENT
    SMITH1     1871     345     DEPT1
    SMITH2     1953     345     DEPT2
    SMITH3     2239     345     DEPT3
    SMITH4     492     345     DEPT4
    SMITH5     2431     345     DEPT5
    SMITH6     2331     345     DEPT6
    SMITH7     1003     369     DEPT7
    SMITH8     1688     370     DEPT8
    SMITH9     2284     371     DEPT9
    So I'm only using one table - 'EMP'
    I've created 2 LOVs, 'DEPTNO' & 'DNAME'.
    'DEPTNO' LOV has the values for the 'DEPTNO' field in the table.
    'DNAME' LOV has the values for the 'DEPARTMENT' field in the table.
    I then created a chart with the below SQL query as its source;
    SELECT NULL LINK,ENAME LABEL,SAL VALUE
    FROM EMP
    WHERE (DEPTNO = :P1_DEPTNO OR :P1_DEPTNO = 0)
    ORDER BY ENAME
    The 'Chart Title' field under the 'Chart Attributes' tab has the below added;
    Department - &P1_DNAME.
    The COMPUTATION is as below;
    SLECT NVL(DEPARTMENT, '-ALL-')
    FROM EMP
    WHERE DEPTNO = :P1_DEPTNO
    Could you advise where I may be going wrong as I have the following errors;
    1. The chart is working OK with the added '(DEPTNO = :P1_DEPTNO OR :P1_DEPTNO = 0)' clause - but I still get no results for '-ALL-'
    2. I can't get the chart to display the current value in the legend - where exactly should I put this line - 'Department - &P1_DNAME.'
    3. The Computation is stopping any data from showing in the chart

  • Change Legend Label

    There is a way to change the label value of the elements for
    chart legend?
    Thank you

    Hi and Thank you,
    it's not what i need..
    I want thath the name of value of legend can be setting by me
    I put you an example:
    If the chart series namefield="Expenses"
    I don't want to see "Expenses" in legend but for example
    "Today is a well day". In othe words i want to set the value of
    label indipendently by charseries namefield

  • Legends

    I know you are already working on other forum problems. This is just a suggestion about 'Legends' for future release.
    Actually Legend 'Active Member' should have been '151 - 10000' pts and atleast one post in last 30 days or something like that. If a member has over 150 posts and he/she is out of touch from oracle forums for months/years, so that member can not be 'Active Member' just bacause he/she has over 150 pts.

    It's not clear if you are referring to Values or Legend, so I'll address both. You can find the options mentioned below in the chart Edit View (same applies for Pivot Table charts).
    By default, the value of a bar will appear when you roll your mouse over it. If you want the value to appear permanently, then click the "Chart Properties" (pointy finger icon) and choose "Show Data Labels: Always".
    Some chart types will not, by default, show a legend (indicating what each color stands for). To show a legend, you click on "Additional Charting Options" (arrow pointing right icon), choose the "Legend" tab and select the location for the legend to appear.

  • Legends on any bar graph

    Hi
    Please guide/ suggest how to get legends permanently displayed on the any bar graphs in the SOD Analytics dashboard. As of now the legends are visible only when the curser is on that bar.
    regards
    NSC

    It's not clear if you are referring to Values or Legend, so I'll address both. You can find the options mentioned below in the chart Edit View (same applies for Pivot Table charts).
    By default, the value of a bar will appear when you roll your mouse over it. If you want the value to appear permanently, then click the "Chart Properties" (pointy finger icon) and choose "Show Data Labels: Always".
    Some chart types will not, by default, show a legend (indicating what each color stands for). To show a legend, you click on "Additional Charting Options" (arrow pointing right icon), choose the "Legend" tab and select the location for the legend to appear.

  • Chart not getting displayed with dimension having sorted

    hi Expers,
    we are facing some strange kind of problem...
    let me brief the details:
    1. we have a column month no (from 1 to 12) and month name (Jan to dec).
    2. our client need was to start month name from (Feb ,march.....dec,Jan).
    3. we created a two logical column
    a. month no. -1 (that makes feb as month no 1 and jan as 0)
    b. another logical column name fiscal month no.with case statement where case when above logical column when 0 then 12 else above logical col.
    4. we have put up sort order on basis of column in 3.b. on make a copy of above month name(as mentioned in point 1) and named it fiscal month name
    5. now we create a report with fiscal month name, revenue and country having pie bar graph with bar across revenue and country and fiscal month name in chart slider.
    from now problem starts up.
    6 we want a total (using create group item) which gives values for all the months.
    7 Total is working well when it appears at last ie (feb....dec,jan,total)..then graph is working fine
    8 but when we put total at begining ie (total,feb....dec,jan) then chart displays only for total not for any other month...however values in legends(for country) is changing dynamically...
    i even tried restart the server....but no help from it.
    experts kindly guide to get out of this issue....
    regards
    Ankit

    No specific set up in the server. If you run it just from the BIP UI is the chart included ? You might also chech the J2EE_HOME\applications\xmlpserver\xmlpserver\WEB-INF\lib directory and ensure that the bibeans libraries are present
    bipres,jar
    bicmn.jar
    Tim

  • What is wrong in SQL Statement with CLOBs Fields

    Hello, need help!! I create that SQL:
    select
    id, caid, region_id, folder_id, masterthingid, visible, display_name, image, keywords, publish_date, subtype, text,
    max(decode(name, 'Destaque', value, null)) destaque,
    max(decode(name, 'Fonte', value, null)) fonte,
    max(decode(name, 'Legenda', value, null)) legenda,
    max(decode(name, 'chamada', value, null)) chamada,
    max(decode(name, 'TitulodaChamada', value, null)) titulo_chamada,
    max(decode(name, 'Tema', value, null)) tema
    from portal.lista_noticias_total
    group by id, caid, region_id, folder_id, masterthingid, visible, display_name, image, keywords, publish_date, subtype
    But the field 'text' doesn't appear =|~
    Im doing anything wrong?
    Help-me!!
    Thks for attencion

    Hi,
    You can't GROUP BY a CLOB.
    Sorry, I missed that part of your subject line.
    My original answer follows:
    I don't see a ; anywhere. Is that the complete query?
    If so, you need to add text to the GROUP BY clause:
    group by id, caid, region_id, folder_id, masterthingid, visible, display_name, image, keywords, publish_date, subtype
    , textEdited by: Frank Kulash on Mar 4, 2009 3:04 PM

  • Pie Chart Slice Label Percentage + Label

    Hi,
    i'm newbie of Publisher 11. I've a problem. I've created a DataSet and a report containing a pie chart using wizard of Publisher as written at following link:
    http://allaboutobiee.blogspot.it/2012/04/working-with-bi-publisher-11g-part3.html
    My chart shows near each slice the percentage value, but it should show the percentage value + corresponding legend text. I've changed all chart properties on left side of window, but it doesn't work. I read that i must set the value LD_PERCENT_TEXT. But where????? How can i modify XML? I must export the report in OBIEE to have more functionalities? Can you explain me what to do step by step because it's the first time i use Publisher 11
    Thanks
    Giancarlo

    do paste this in the alt text of the chart ,
    Right click the picture , select format picture and go to alt text tab.
    paste this in between the graph element and not at the end or beginning.
    <SliceLabel visible="true">
    <ViewFormat decimalDigit="1" decimalSeparator="." decimalDigitUsed="true" decimalSeparatorUsed="true"/>
    </SliceLabel>

  • Chart series color

    Hi
    I have a simple bar chart and I want all of it's bars to have the same color.
    Is that possible?
    Any ideas on how to achieve that?
    Regards
    Shlomi

    Hi Shlomi,
    Yes, it is possible.
    Design Studio 1.3:
    Option 1 (typical use case: if your dimension doesn't have too much different values and it has the same values - no new values are added dynamically, for example you have applied a background filter to max. 20 fixed dimension values): Chart > Additional Properties > Data Series: here you can define a different color for each dimension value; you would define the same color for each dimension value
    Option 2 (typical use case: if your dimension has a lot of values which are not fixed in your chart - they change if new data gets loaded or different filters are applied to the data source): Chart > Properties > Display > Conditional Formatting > New Rule...: create a rule where either your measure or dimension meets a condition and choose the color that should be used if the condition is true
    Or use CSS in your custom CSS file (should also work in DS 1.2, but I tested it only in DS 1.3):
    for example:
    /* Chart Type: Bar ; change color for bars */
    .v-m-plot .v-bar rect {fill: orange; stroke: white/*brown*/;}
    /* Chart Type: Bar ; change color for dimension values in legend */
    .v-legend-content path {fill: orange;}
    ...you can further customize the css with other styling too.
    Best Regards,
    David

  • Displaying title in the next page dynamically, how?

    I have tour pages each with a different tour title ..
    like this one :
    what I want is , when anyone clicks "Reservation" button on the top left ,, the tour title is automatically shown on the top of the reservation page (Program Name) :
    Program name : (Alexander The Great)
    how can I achieve that ?

    okay now I want to apply this on a wide scale ..
    I have 26 tours and I modified each reservation link with a new tour value
    tour=new different value for each
    and this is my select code :
    <select name="Program Name" id="Program Name" tabindex="5">
    <option<?php if ($_GET['tour'] == "") { ?><?php } ?>>Choose A Tour</option>
    <option<?php if ($_GET['tour'] == "al_the_great") { ?> selected="selected"<?php } ?> value="Alexander The Great">Alexander The Great</option>
    <option<?php if ($_GET['tour'] == "test_of_egypt") { ?>selected="selected"<?php } ?> value="Test Of Egypt">Test Of Egypt</option>
    <option<?php if ($_GET['tour'] == "romantic_nile") { ?>selected="selected"<?php } ?> value="Romantic Nile">Romantic Nile</option>
    <option<?php if ($_GET['tour'] == "q_neferari") { ?>selected="selected"<?php } ?> value="Queen Nefertari">Queen Nefertari</option>
    <option<?php if ($_GET['tour'] == "king_tut") { ?>selected="selected"<?php } ?> value="King Tut">King Tut</option>
    <option<?php if ($_GET['tour'] == "k_treasure") { ?>selected="selected"<?php } ?> value="King Treasures">King Treasures</option>
    <option<?php if ($_GET['tour'] == "egypt_reefs") { ?>selected="selected"<?php } ?> value="Egypt Reefs">Egypt Reefs</option>
    <option<?php if ($_GET['tour'] == "tut_dive") { ?>selected="selected"<?php } ?> value="King Tut Dive">King Tut Dive</option>
    <option<?php if ($_GET['tour'] == "nile_legend") { ?>selected="selected"<?php } ?> value="Nile Legend">Nile Legend</option>
    <option<?php if ($_GET['tour'] == "ram_dolphins") { ?>selected="selected"<?php } ?> value="Ramses &amp; Dolphins">Ramses &amp; Dolphins</option>
    <option<?php if ($_GET['tour'] == "red_sea_dolphins") { ?>selected="selected"<?php } ?> value="Red Sea Dolphins">Red Sea Dolphins</option>
    <option<?php if ($_GET['tour'] == "sea_sun") { ?>selected="selected"<?php } ?> value="Sea & Sun">Sea & Sun</option>
    <option<?php if ($_GET['tour'] == "baharya") { ?>selected="selected"<?php } ?> value="Baharya Discovery">Baharya Discovery</option>
    <option<?php if ($_GET['tour'] == "desert_lovers") { ?>selected="selected"<?php } ?> value="Desert Lovers">Desert Lovers</option>
    <option<?php if ($_GET['tour'] == "egy_adventure") { ?>selected="selected"<?php } ?> value="Egypt Adventure">Egypt Adventure</option>
    <option<?php if ($_GET['tour'] == "adv_grand") { ?>selected="selected"<?php } ?> value="Grand Egypt Adventure">Grand Egypt Adventure</option>
    <option<?php if ($_GET['tour'] == "adv_nile") { ?>selected="selected"<?php } ?> value="Nile Adventure">Nile Adventure</option>
    <option<?php if ($_GET['tour'] == "nile_felucca") { ?>selected="selected"<?php } ?> value="Nile Felucca">Nile Felucca</option>
    <option<?php if ($_GET['tour'] == "nile_sec") { ?>selected="selected"<?php } ?> value="Nile Secrets">Nile Secrets</option>
    <option<?php if ($_GET['tour'] == "adv_tut") { ?>selected="selected"<?php } ?> value="Tut Adventure">Tut Adventure</option>
    <option<?php if ($_GET['tour'] == "karnak") { ?>selected="selected"<?php } ?> value="Karnack">Karnack</option>
    <option<?php if ($_GET['tour'] == "king_mena") { ?>selected="selected"<?php } ?> value="King Mina">King Mina</option>
    <option<?php if ($_GET['tour'] == "q_hatchepsut") { ?>selected="selected"<?php } ?> value="Queen Hatshepsut">Queen Hatshepsut</option>
    <option<?php if ($_GET['tour'] == "q_cairo") { ?>selected="selected"<?php } ?> value="Quick Cairo">Quick Cairo</option>
    <option<?php if ($_GET['tour'] == "sun_ray") { ?>selected="selected"<?php } ?> value="Sun Ray">Sun Ray</option>
    <option<?php if ($_GET['tour'] == "sun_sun") { ?>selected="selected"<?php } ?> value="Sun &amp; Sea">Sun &amp; Sea</option>
    </select>
    is this code right ?
    do I need to put this in each select option ?
    selected="selected"

  • Formatted Data Labels in CFCHART

    Is there a way to format data values in CFCHART?
    All my values in database are stored as 99.9 See below). These are percentages that I need to display on a bar chart. Everything works fine except when displaying 76.0, it shows as 76. All other values that have a number besides zero after the decimal point show up fine except for zero. I want the numbers to be consistent. I am already using custom XML file for formatting but unable to display the "zero" after the decimal point.
    Let's assume, StartYear = 2007 and EndYear = 2008, and the data in Influencer_Data table looks like this:
    ID      Poll_Year     Company    Influence_ID      Pulse      Goal
    96      2008            XYZ            842                  59.6      59.6
    97      2008            XYZ            839                  80.8      80.8
    98      2008            XYZ            838                  86.9      86.9
    99      2008            XYZ            841                  67.1      67.1
    100    2008            XYZ            840                  66.3      66.3
    101    2008            XYZ            470                  54.5      54.5
    102    2007            XYZ            842                  56.5      56.5
    103    2007            XYZ            839                  81.5      81.5
    104    2007            XYZ            838                  85.5      85.5
    105    2007            XYZ            841                  71.2      71.2
    106    2007            XYZ            840                  76.0      76.0
    107    2007            XYZ            470                  54.2      54.2
    108    2008            XYZ            843                  82.6      82.6
    And the data in influencers table looks like this:
    Influencer_ID Influencer_Type
    470      Regulators
    838      Financial Community
    839      Community Leaders
    840      Media
    841      Government
    842      Advocates
    843      Mexico
    <cfloop index="i" from="#StartYear#" to="#EndYear#" step="1">
         <CFQUERY NAME="GetInfluenceData#i#" DATASOURCE="#RMIDSN#">
              Select     ID.*, I.Influencer_Type
              From     Influencer_Data ID
                   INNER JOIN Influencers I ON ID.Influencer_ID = I.Influencer_ID
              Where     ID.Poll_Year = <cfqueryparam value="#i#" cfsqltype="CF_SQL_INTEGER">
                   AND ID.Company = 'XYZ'
              Order     By I.Influencer_Type
         </CFQUERY>
    </cfloop>
    The custom XML file (TLRIS.xml) looks like this:
    ?xml version="1.0" encoding="UTF-8"?>
    <frameChart isInterpolated="false">
              <frame xDepth="4" yDepth="5" outline="black" isVGridVisible="true"/>
              <xAxis>
                   <labelFormat pattern="#0.0"/>
              </xAxis>
              <yAxis>
                   <labelFormat pattern="#0.0"/>
                   <labelStyle orientation="Horizontal"/>
              </yAxis>
              <dataLabels style="Value" font="Arial-12" isMultiline="true">
              <![CDATA[ $(value) ]]>
              </dataLabels>
              <legend allowSpan="true" equalCols="false" isMultiline="true"/>
              <elements drawOutline="false">
                   <morph morph="Grow"/>
              </elements>
              <popup decoration="Round"/>
              <paint palette="Fiesta" paint="Plain" isVertical="true" min="47" max="83"/>
              <insets right="5"/>
    </frameChart>
    And the code for the graph is below:
    <cfoutput>
    <cfchart format="#ChartType#"
         chartheight="300"
         chartwidth="750"
         scalefrom="0"
         scaleto="100"
         foregroundcolor="##000000"
         databackgroundcolor="##ffffff"
         font="Arial"
         fontsize="10"
         labelformat="number"
         style="TLRIS.xml"
         show3d="yes"
         showlegend="yes"
         tipstyle="mouseOver"
         tipbgcolor="##FFFF00">
         <cfloop index="i" from="#StartYear#" to="#EndYear#" step="1">
              <cfset LoopCount = LoopCount + 1>
              <cfset WhichColor = ListGetAt(colorlist, LoopCount)>
              <cfchartseries     
                          type="bar"
                         serieslabel="#i#"
                         seriescolor="#WhichColor#"
                         datalabelstyle="pattern">
                         <cfloop query="GetInfluenceData#i#">
                                    <cfchartdata item="#Influencer_Type#" value="#Pulse#">
                         </cfloop>
              </cfchartseries>
         </cfloop>
    </cfchart>
    </cfoutput>

    mohadi wrote:
    I have already done that with no success.
    I am beginning to believe this may be a bug.
    Even if you try something as simple as the following, the decimal points that have zeroes don't show
    <cfchart style="beige">
    <cfchartseries type="pie">
    <cfchartdata item="New car sales" value="50.0">
    <cfchartdata item="Used car sales" value="55.0">
    <cfchartdata item="Leasing" value="56.5">
    <cfchartdata item="Service" value="76.2">
    </cfchartseries>
    </cfchart>
    Well that is the wrong kind of chart and it is not using the xml style.  But it works perfectly with a bar chart, using a custom style. The values display exactly as you have them above.
    <cfchart style="myPatternStyle.xml">
        <cfchartseries type="bar">
            <cfchartdata item="New car sales" value="50.0">
            <cfchartdata item="Used car sales" value="55.0">
            <cfchartdata item="Leasing" value="56.5">
            <cfchartdata item="Service" value="76.2">
        </cfchartseries>
    </cfchart>
    <!--- snippet from xml styles --->
    .... other xml ....
    <yAxis scaleMin="0">
          <titleStyle font="Arial-12-bold"/>
          <dateTimeStyle majorUnit="Year" minorUnit="Month"/>
          <labelFormat style="Pattern" pattern="#,##0.0#######"/>
    </yAxis>
    .... other xml ....

  • How to get maximal value from the data/class for show in Map legend

    I make WAD report that using Map Web Item.
    I devide to four (4) classes for legend (Generate_Breaks).
    I want to change default value for the class by javascript and for this,
    I need to get maximal value from the class.
    How to get maximal value from the data/class.
    please give me solution for my problem.
    Many Thx
    Eddy Utomo

    use this to get the following End_date
    <?following-sibling::../END_DATE?>
    Try this
    <?for-each:/ROOT/ROW?>
    ==================
    Current StartDate <?START_DATE?>
    Current End Date <?END_DATE?>
    Next Start Date <?following-sibling::ROW/END_DATE?>
    Previous End Date <?preceding-sibling::ROW[1]/END_DATE?>
    ================
    <?end for-each?>
    o/p
    ==================
    Current StartDate 01-01-1980
    Current End Date 01-01-1988
    Next Start Date 01-01-1990
    Previous End Date
    ================
    ==================
    Current StartDate 01-01-1988
    Current End Date 01-01-1990
    Next Start Date 01-01-2005
    Previous End Date 01-01-1988
    ================
    ==================
    Current StartDate 01-01-2000
    Current End Date 01-01-2005
    Next Start Date
    Previous End Date 01

  • Display column values as a series/legend on a line chart where one column value can be more than one category

    Hi Everyone
    I don't know if this is possible or not, so I will describe it. I have a column in a table called Filing. There are currently three values in it ("Abuse", "Neglect", "Voluntary") and each record has this populated. I also have
    the below slicer for the column also.
    I would like to add a fourth value called "Abuse/Neglect" that would identify instances where both an Abuse and Neglect petition was filed, which is a subset of the Abuse and Neglect records in the Filing column.
    My question is, is it possible to create a line chart that has the 4 Filing possibilities: "Abuse", "Neglect", "Voluntary", "Abuse/Neglect" as the Series/Legend in the line chart?
    The problem is that there are records that are more than one category: Abuse or Neglect records can also be Abuse/Neglect.
    Paul

    Hi Paul,
    According to your description, there is a column with the values ("Abuse", "Neglect", "Voluntary") in your table, now what you need to is that add another value "Abuse/Neglect" in this column, and then use it
    as Series/Legend in the line chart, right?
    In this case, you can add calculated column to your table based on your logic. A calculated column is a column that you add to an existing PowerPivot table. Instead of pasting or importing values in the column, you create a DAX formula that defines
    the column values. The calculated column can be used in a PivotTable, PivotChart, or Power View report as you would any other data column. Please refer to the link below to see the details.
    https://msdn.microsoft.com/en-us/library/gg413492%28v=sql.110%29.aspx?f=255&MSPPError=-2147217396
    Regards,
    Charlie Liao
    TechNet Community Support

Maybe you are looking for

  • Really urgent: regarding MM04 REPORT

    hi, i had made dis code  and i am not able to display the proper out put,plzz help me for idsplaying the output of program <REMOVED BY MODERATOR>. CODE:- REPORT ZNEW01 no standard page heading LINE-SIZE 310. TABLES: cdhdr,cdpos. DATA : BEGIN OF itab

  • Re : Account 893010 requires an assignment to a CO object

    Hi          While doing purchase order the following error is coming " Purchase order item 00010 still contains faulty account assignments Item 10 Acct.assgt 1 Account 893010 requires an assignment to a CO object " How to solve this. Thanks Anto

  • OSX 10.4.5 not running well

    About two weeks ago I updated to OSX 10.4.5, and since then many of my programs don't run smoothly anymore. I work mostly in Adobes Creative Suite 2, and had problems with both Photoshop and InDesign - generally, they will only crash 2-3 times a day,

  • 2013 installer

    I am trying to install LV 2013.  The select products to install dialog shows all of the installed 2012 products, but not LV 2013.  The only 2013 products that it shows is Measurement Studio.  There is no browse selection.  The title bar on the dialog

  • Senior needs help preparing to give old 2007 MacBook to a friend

    I have kept my old MacBook (Apr. 2007) as an emergency backup.  It is running 10.7.5, the latest available for this model.  I have a bff whom I am trying to help out (we are both seniors).  I am giving her my iPhone 5 when the 6 comes out and I want