WAD: show value and percentage inside bar

Hi!
I've created a stacked columns chart and now I want to display the values in the bar. Problem: I can only show one value, e.g. 15.000$. But I would like to see 15000$ and the percentage of this value, e.g. 25% (both inside of the same bar).
Is there a possibility to do that?
thanx, gunter

hi
check the properties of Webtemplate for Graph.
in that columns values can change,and over thr make sure that automatic for all values,initially it has the userdefined option amnd change it  into automatic and i thk you can find the categories options to do.try with this
mahesh

Similar Messages

  • Show value and percentage in Stacked Bar in OBIEE 11.x

    Hi All,
    I need to show the values as well as percentages for a particular measure in stacked bar chart.
    Any help in this regard?
    Regards,

    hi
    check the properties of Webtemplate for Graph.
    in that columns values can change,and over thr make sure that automatic for all values,initially it has the userdefined option amnd change it  into automatic and i thk you can find the categories options to do.try with this
    mahesh

  • Pie chart value and percentage

    is it possible to show both value and percentage when holding mouse cursor over the pie chart?
    I find there is no option for it.
    thank you very much!

    hi,
    Your requirement is to show the legends and data values at a time (when mouse rollover the pie chart)
    Chart View -->Select the Graph as PIE then the Advance properties is enabled
    In Advance Properties ( Start symbol ) click on that you will get chart type special and select show the labels and label values. Let me know if this is not the solution
    Thanks,
    Saichand.V
    Edited by: saichand on Jul 7, 2009 10:46 AM
    Edited by: saichand on Jul 7, 2009 10:48 AM

  • Multilevel base value and percentage

    hi,
    in AFAMS, there are columns like base value and percentage. i need to clarify the below. hope can get advice.
    1) say base value is 01 (acquisition value), year = 8 and percentage 5.
        in this case, meaning the depreciation cost is 5% out of the total acquisition value for the first 8 years?
        say acquisition value is 50,000. so 5% X 50000 for the first 8 years?
    2) mostly multilevel for reducing balance method right? straight line hardly got multilevel. correct?
    thanks
    rgds

    Hi
    1. Yes, as per your example, it will be 5% x 50,000 for first 8 yrs.
    2. This is not necessary, but most common.
    Regards
    Zubin

  • Balancing Segment Value set Does't show values and Giving error Page.

    In R12,LOV of Balancing segment, doesn't show values and giving error page while creating Retained Earnings Account in Ledger Options Page.
    If once the ledger options finished, and it gets the status completed, can't we modify the Ledger options in future.
    By mistake we finished. can i delete Primary ledger from Accounting stucture?
    Thanks in advance,
    VRC Murthy

    Turn on the dynamic insert for your chart of account structure.
    Make sure you have at least one value in each of the value value set attached to COA segments. Make sure retained earning account value exists in your Account value set.
    Now you will be able to pick your retained earnings account in Accounting Setups screen.
    After completing your ledger setup you will be able to modify some options like suspense account, reversal set, future enterable periods etc.
    I have explained the GL setup in detail in my online training videos at http://handsonerp.com
    Regards
    Edited by: user2648997 on Nov 13, 2009 11:50 AM

  • Display value and percentage of row in pivot table w/o double counting...

    Hello,
    I am wondering how/if one can show a metric value and the row percentage it represents without double counting. So far, I have attempted to duplicate the metric value layer, move the duplicated layer in the measures section of the pivot table next to the original layer (i.e. I have the value twice in the measure section), and set the format of the duplicated layer to "show data as > percent > row".
    This makes the trick in terms of the data I see in the table; however, the values displayed in the table are double counted in the chart. I guess this makes sense since I have duplicated the metric value.
    Any thoughts on how I could tackle this issue differently?
    Thanks,
    JP

    You can do all that in the Pivot Table... Go to the measure properties and Duplicate Layer...than Show as...
    Dont need to duplicate the criteria...
    Antonio
    BExpert Brazil

  • LabVIEW control which shows value in percentage

    Hello
    I am want to know about LabVIEW control which shows the values in percentege. Actuly I am using wait(ms) function and as a input i m using control but the problem is that i want values in percentage..
    Thank You

    Thank u once again for your reply
    I m explaing my problem brifly. I am attached a screenshot of my blockdiagram.
    In the diagram i used str_1 for turned on LED let say for 10 msec and in str_2 i am mesuring voltage at 5 msec. so when LED is on for 10msec then exectly at 5 msec i mesure voltage.
    Now the problem is i want to change in str_2 for constant 5 msec to control(in percentage) in wait function.
    If i give lets say 10 msec input to wait function in str_1 & in str_2  i give 70% then input of wait function is 7 msec
    if i give 20 msec input to wait function in str_1 & in str_2 60% then input of wait function has to be 12 msec..  
    I try to explain my problem though i know its diffcult to understand for someone else.. Hoping for your reply
    thank you
    Attachments:
    screenshot.jpg ‏672 KB

  • List Box showing Value and Display members?

    Ok this is a CONCEPT problem (the code is not professional, just read it for the concept, though it does compile and run).
    Right, I have asked many people on IRC and no one is giving me a straight answer lol so maybe some professionals can help me.
    I am trying to use a Datasource property for my combobox. This is so I can just pass an entire KeyValue pair with indexes and values to be shown in the listbox.
    Creating the keyvaluepair as a WHOLE and passing that to datasource property works perfectly.
    Creating a keyvaluepair PROCEDURALLY (in a loop or w/e) ends in the datasource property ToString()ing it, list box items show BOTH value AND display members in square brackets as an entire option.
    NOTE: Getting the lsitbox.value results in ONLY the valuemember being returned even though the listbox shows both the valuemembers AND the displaymember? it knows they are different?
    Now, I dont want any alternatives or comments about the quality of the code, all I want to know is WHY is it doing this, it seems compeltely illogical that the same TYPE and Values and can different Effects within the datasource property? Its like it knows
    it was built procedurally?
    Anyway here is some code for reference:
    // Windows Form
    namespace skbtInstaller
    public partial class frmMainWindow : Form
    public frmMainWindow()
    InitializeComponent();
    // coxArmaPath = Combo Box (simple drop down)
    this.cBoxArmaPath.ValueMember = "Key";
    this.cBoxArmaPath.DisplayMember = "Value";
    public void addServerPathItem(String Key, String Value)
    this.cBoxArmaPath.Items.Add(new KeyValuePair<String, String>(Key,Value));
    // This works fine, only the "DisplayMember" is displayed and the "ValueMember" is hidden.
    // This acts differently with the same types???
    public void setServerPathDatasource(List<KeyValuePair<String, String>> source)
    this.cBoxArmaPath.DataSource = new BindingSource(source, null);
    public class skbtServerControl
    private frmMainWindow frmMainWindowHandle;
    public void refreshformWindow()
    // Clear Drop Box (empties drop box)
    this.frmMainWindowHandle.clearPathBox();
    //skbtServerConfig is very simple property object
    foreach (KeyValuePair<String, skbtServerConfig> pair in CoreConfig.getServerConfigList())
    // Populate Drop Box
    this.frmMainWindowHandle.addServerPathItem(pair.Key, pair.Value.getTextualName()); // this works as intended
    // cBox gets items like: Some Display Text, Some Display Text, Some Display Text (PERFECT!)
    // This works absolutely fine. ValueMembers are hidden.
    public void refreshformWindowWithSTATICDatasource()
    // Clear Drop Box
    this.frmMainWindowHandle.clearPathBox();
    var pathDataSource = new List<KeyValuePair<String, String>>()
    new KeyValuePair<String, String>("testKey1", "somevalue1"),
    new KeyValuePair<String, String>("testKey2", "somevalue2"),
    new KeyValuePair<String, String>("testKey3", "somevalue3")
    // Populate Drop Box
    this.frmMainWindowHandle.setServerPathDatasource(pathDataSource);
    // cBox gets items like: Some Display Text, Some Display Text, Some Display Text (PERFECT!)
    // ** HERE IS THE PROBLEM?? **
    // This creates a type that seems different to the above function which works fine...
    public void refreshformWindowWithDatasource()
    // Clear Drop Box
    this.frmMainWindowHandle.clearPathBox();
    var pathDataSource = new List<KeyValuePair<String, String>>();
    //skbtServerConfig is very simple property object
    foreach (KeyValuePair<String, skbtServerConfig> pair in CoreConfig.getServerConfigList())
    pathDataSource.Add(new KeyValuePair<String, String>(pair.Key, pair.Value.getTextualName()));
    // Populate Drop Box
    this.frmMainWindowHandle.setServerPathDatasource(pathDataSource);
    // cBox gets items like [asjAETJQ5785d45,Some Display Text], [asawfgQ5785d45,Some Display Text], [asjAhrrQ5785d45,Some Display Text]
    // ????? surely this function should act exactly like the function above??
    Thanks!
    (I have posted on codeproject too, will condense any replies).
                 

    Thanks Michael!
    I did debug this and it turns out when i set a new BindingSource to the combo box, indeed the DisplayMember gets reset. Oddly though, the ValueMember stays the same.
    I have fixed this with setting the Members before every new bindingSource is set to the combobox, strange that only the displaymember is reset?
    For reference, the new resolved code: (this compiles albeit with designer components placed)
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    namespace etstapp1
    public partial class Form1 : Form
    private skbtServerControl sc;
    public Form1()
    InitializeComponent();
    this.sc = new skbtServerControl(this);
    // coxArmaPath = Combo Box (simple drop down)
    this.cBoxArmaPath.ValueMember = "Key";
    this.cBoxArmaPath.DisplayMember = "Value"; // This doesnt seem to stick after the first datasource set??
    public void addServerPathItem(String Key, String Value)
    this.cBoxArmaPath.Items.Add(new KeyValuePair<String, String>(Key, Value));
    // This works fine, only the "DisplayMember" is displayed and the "ValueMember" is hidden.
    // This acts differently with the same types???
    public void setServerPathDatasource(List<KeyValuePair<String, String>> source)
    this.cBoxArmaPath.DisplayMember = "Value"; // fix datasource problem
    this.cBoxArmaPath.ValueMember = "Key"; // fix datasource problem
    this.cBoxArmaPath.DataSource = new BindingSource(source, null);
    public void clearPathBox()
    if(this.cBoxArmaPath.DataSource == null){
    this.cBoxArmaPath.Items.Clear();
    else
    this.cBoxArmaPath.DataSource = null;
    private void btnStatic_Click(object sender, EventArgs e)
    this.sc.refreshformWindowWithSTATICDatasource();
    private void btnNormal_Click(object sender, EventArgs e)
    this.sc.refreshFormWindow();
    private void btnDynamic_Click(object sender, EventArgs e)
    this.sc.refreshformWindowWithDatasource();
    public class skbtServerControl
    private CoreConfig CoreConfig;
    private Form1 frmMainWindowHandle;
    public skbtServerControl(Form1 f){
    this.frmMainWindowHandle = f;
    this.CoreConfig = new CoreConfig();
    public void refreshFormWindow()
    // Clear Drop Box (empties drop box)
    this.frmMainWindowHandle.clearPathBox();
    //skbtServerConfig is very simple property object
    foreach (KeyValuePair<String, skbtServerConfig> pair in CoreConfig.getServerConfigList())
    // Populate Drop Box
    this.frmMainWindowHandle.addServerPathItem(pair.Key, pair.Value.getTextualName()); // this works as intended
    // cBox gets items like: Some Display Text, Some Display Text, Some Display Text (PERFECT!)
    // This works absolutely fine. ValueMembers are hidden.
    public void refreshformWindowWithSTATICDatasource()
    // Clear Drop Box
    this.frmMainWindowHandle.clearPathBox();
    var pathDataSource = new List<KeyValuePair<String, String>>()
    new KeyValuePair<String, String>("testKey1", "somevalue1"),
    new KeyValuePair<String, String>("testKey2", "somevalue2"),
    new KeyValuePair<String, String>("testKey3", "somevalue3")
    // Populate Drop Box
    this.frmMainWindowHandle.setServerPathDatasource(pathDataSource);
    // cBox gets items like: Some Display Text, Some Display Text, Some Display Text (PERFECT!)
    // ** HERE IS THE PROBLEM?? **
    // This creates a type that seems different to the above function which works fine...
    public void refreshformWindowWithDatasource()
    // Clear Drop Box
    this.frmMainWindowHandle.clearPathBox();
    var pathDataSource = new List<KeyValuePair<String, String>>();
    //skbtServerConfig is very simple property object
    foreach (KeyValuePair<String, skbtServerConfig> pair in this.CoreConfig.getServerConfigList())
    pathDataSource.Add(new KeyValuePair<String, String>(pair.Key, pair.Value.getTextualName()));
    // Populate Drop Box
    this.frmMainWindowHandle.setServerPathDatasource(pathDataSource);
    // cBox gets items like [asjAETJQ5785d45,Some Display Text], [asawfgQ5785d45,Some Display Text], [asjAhrrQ5785d45,Some Display Text]
    // ????? surely this function should act exactly like the function above??
    public class CoreConfig
    public Dictionary<String, skbtServerConfig> getServerConfigList(){
    return new Dictionary<string, skbtServerConfig>()
    {"somekey1", new skbtServerConfig("somename1")},
    {"somekey2", new skbtServerConfig("somename2")}
    public class skbtServerConfig
    private String name;
    public skbtServerConfig(String name)
    this.name = name;
    public String getTextualName()
    return this.name;
    Talking with someone it seems logical that every time I set a new BindingSource the component will not know if I want to keep the same member values so it resets them, but why it only resets displaymember? very strange to me.
    Thanks again.

  • How to show value and unit in different columns

    Hi All,
    I need ABAP help for the below requirement in BI7.0
    Data source contains  the field Amount in local currency (Data source is flat file of CSV format)
    Amount in local currency
           1000  INR
           2000  INR
           1000  GBP
           2000  EUR
    I have to get this value in target like below( value and unit should be in different columns)
    Amount in local currency              0currency
           1000                                           INR
           2000                                           INR
           1000                                           GBP
           2000                                           EUR
    Can any one help me how to declare the data type for  Amount in local currency and how to show this value in two columns in the target.
    Thanks,
    kishore.

    TYPES:BEGIN OF ty_stru,
      s1 TYPE string,
    END OF ty_stru,
    BEGIN OF ty_stru1,
      s2 TYPE string,
      s3 TYPE string,
      END OF ty_stru1.
    DATA:itab TYPE TABLE OF ty_stru,
          wa LIKE LINE OF itab.
    DATA:itab1 TYPE TABLE OF ty_stru1,
         wa1 LIKE LINE OF itab1.
    START-OF-SELECTION.
    "--Input--
    In input 1000 and USD having space
      wa-s1 = '1000 USD'.
       APPEND wa TO itab.
      wa-s1 = '1000 INR'.
       APPEND wa TO itab.
      wa-s1 = '1000 EUR'.
      APPEND wa TO itab.
    "--Input--
      LOOP AT itab INTO wa.
    SPLIT wa-s1 AT space INTO  wa1-s2 wa1-s3.*------> split command
    APPEND  wa1 TO itab1.*---------------->splited value store into another internal table
      ENDLOOP.
    "--Display--
      LOOP AT itab1 inTO wa1.
        WRITE: wa1-s2,
               wa1-s3.
      ENDLOOP.
    "--Display--
    Output:
    1000 USD
    1000 INR
    1000 EUR
    This is simple prgram for split a string into two different string based on space
    regards
    Dharma
    Edited by: dharma raj on Aug 19, 2009 2:01 PM

  • Show values as percentages of first value in series

    I have a tricky problem I've tried to figure a way to do in OBIEE and I'm currently stumped.
    I have data that generally decays over time, but has vastly different starting values. I need to be able to show the data as percentages of the starting value, so that I can compare the various streams on an equal basis.
    Here is the data I have (a small sample)
    1492 1470 1369 1264 1141 1037
    1190 1162 1067 972 842 723
    266 265 259 250 238 226
    What I want it to look like this:
    100% 99% 92% 85% 76% 70%
    100% 98% 90% 82% 71% 61%
    100% 100% 97% 94% 89% 85%
    This is fairly easy to do with the data in Excel, but I really need the ability for the whole thing to work in OBIEE.
    I tried creating a view that only has the numbers in the first column, but I can find no way to then have a subsequent report match and then calculate the percentages.
    Can this be done in OBIEE? Any Ideas?
    Thanks,
    Dave

    Thanks, but my numbers are from an aggregate already (count) so I can't combine a first in the same function with a count.
    Any other ideas?
    Thanks,
    Dave

  • My iPhone 4S shows that I am connected to wifi, but still shows 4G and not the bars for wifi.

    I have been using my iPhone 4S for one year and has been working perfectly fine until now. I connect it to wifi and it shows the blue check, showing I am supposed to be connected, but at the top, where the 4G network shows, it stays at 4G and does not show the bars for the wifi. It only connects to the one home network I have. When I am connected to the home wifi, it kicks me off the wifi everytime I put my phone on standby--> lock it after I am done using it. It also kicks me off my home wifi occasionally, when I am in the middle of using it, and have to recconect it. If I go to a store, for example, JcPenny, I try to connect it to the wifi there and it shows the blue check, and like I said, the 4G network does not change to the wifi bars. Please try to help me!

    You are detecting the wifi, but not connected to it.
    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    Change the channel on your wireless router. Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    Another thing to try - Go into your router security settings and change from WEP to WPA with AES.
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130?tstart=60
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • Error when attempting to "show values" in Info Design Tool

    BI 4.1 SP2 FP3
    We have an SQL Server OLE connection. For one of our tables, when we attempt to show values (and anything afterwards such as parse objects), we get the below error. All other tables over the same OLE connection parse fine. Any ideas?

    Hi..
    Can you please check fields data types,
    I suspect getting the error due to some of the fields data types not specified correctly.

  • Show values beside Bar of a chart

    Hello world,
    within a chart I like to show the values beside/of the bar.
    Is this possible? ...and how
    Thank you.
    Ralf Müller

    In MII 12.0 and prior, the default behavior of the various Bar mode of the iChart is to put the number below the bar.
    MII 12.1 introduces the ability to have this number placed inside the bar chart area, like on top of the bar.
    Regards,
    Jeremy

  • How can I show a 0% range in the data value label on a bar chart thanks?

    How can I show a 0% range in the data value label on a bar chart thanks?

    I'm not sure what the question is. 
    I know that if you have a bar chart and one of the categories (X-axis) has bar (Y value) equal to 0%, no bar is plotted for that category. Even the addition of a stroke (line) around the bars doesn't make one appear for 0%.  The only automatic way I know of to make it look like there is data in that category is to add the value labels to the bars. Inspector/Chart/Series, select one of the bars on the chart, click on "value labels". Another method that is a workaround is to fudge the number a little in your table so that instead of 0% it is a very small %.  This will get you a thin line on the chart.
    But if your question is about the value labels (the numbers that display on or in the bars) and you are not getting one for a bar that is supposed to be 0%, it probably means your table doesn't actually have a 0% in the corresponding cell. A blank cell in the table will not get a value label.

  • Stacked Bar showing VALUE literal instead of X axis value in hover hint

    I am converting to APEX 3.0 and noticed that the new "Show Hint" doesnt display the X axis value on a Stacked bar. Instead it shows the literal "VALUE". For example, I am displaying the number of orders for a given day. X=date, Y = count. I was expecting the Hint to display "11/15/07, 15" but instead it displays "VALUE, 15".
    This same sql displays correctly when I use it in a Line Chart.
    Any ideas? Thank You

    Bump...having same issue, still scanning message board for solution.

Maybe you are looking for

  • Safari on iphone won't render cgi generated png images with query strings

    I've got a cgi app functioning as a web service that generates png images and serves them up as part of another app which marshals them up in HTML. Here's the image stand alone: http://cybre.net/maps/mapgen.pl.png?WIDTH=1024&HEIGHT=768 and here's how

  • Iisforward and iisproxy

    Does anyone know how I can forward to two different WLS? I have a website with two virtual directories for two applications. one is /fw and the other /tw but in the .ini file there is only one weblogichost entry and no way to distinguish that /fw nee

  • Is it possible to hold the HR postings in FI

    .Dear experts, could you please help me out regarding the following issue. is it possible to hold the HR postings in FI if possible send me the procedure if not give me some reasons.

  • Partial collection Failure for nexus 5548UP in PI 2.1

    Hi there, I get "Partial Collection Failure" in the inventory collection status in Prime Infrastructure for all my Nexus 5548UP (8 devices). i have seen in the PI 2.1 release notes that a bug CSCum16230  which look like my problem has been resolved i

  • Flex Charting expert?

    I am displaying multiple lines vertically in a linechart. User can make a rectangular selection on chartitems. I want to change the linechart background color of the selected region only. So if user selects multiple region then I will be setting spec