Need to put value and test in pie chart

hi all,
I have a requirement where i have to put both the value and the text in the pie chart.
I have useed the following code
<SliceLabel textType="LD_VALUE"/>
is it possible to display both value and text.
Regards,
Dhaya.

To get the actual Value use this.
<SliceLabel textType="LD_VALUE"/>
Other vaules you can use are
LD_TEXT_PERCENT, LD_VALUE , LD_TEXT , LD_PERCENT
Only these are possible in oracle library
http://winrichman.blogspot.com/search/label/chart

Similar Messages

  • I need the IP values and Subnet Mask which is given by the ISP for my jetpack so i can configure my smart tv

    i need the IP values and Subnet Mask which is given by the ISP for my jetpack so i can configure my smart tv

    Your public IP Address is provided by the ISP.  Your smart TV does not need to know this information unless you plan to host some kind of an application or service for folks on the internet through your TV.  It wouldn't work anyways since all Jetpacks sit behind a VZW NAT firewall and blocks hosting capabilities by default.
    What you more than likely are referring to is the Default Gateway and Subnet mask of the Local Area Network being hosted by your Jetpack.  By default these values should be something like 192.168.1.1 and 255.255.255.0.  You can confirm the DG and SM by connecting a computer to the Jetpack.  Every computer has a way to look up the networking information.  On a Windows OS you would open up a CMD window and type in "IPCONFIG".
    If you shoot us the model number of your Smart TV we may be able to look up a User Guide to confirm what kind of info is needed to connect to a wireless network.  Most of the time exchanging the IP information is done automatically during the connection process.  It would also be nice to know which Jetpack model you have so we can compare the User Guide for that device with your TV.

  • Display the value as percentage in pie-chart in WEBI

    Hi Experts,
       I have two measures  No. of Sales Transactions and Customer Visit. And I created a measure named CustomerConversionRate.
    ie, CustomerConversionRate = ([No. of Sales Transactions]/[Customer Visit])*100.
    So my requirement is that CustomerConversionRate is  to be display  into a pie chart in WEBI . CustomerConversionRate always a percentage.I
    hereby attached a sample pie-chart based on my requirement.
    Eg:CustomerConversionRate=79.27 and Remaining = 20.73
    I want to display  CustomerConversionRate=79.27  and Remaining = 20.73 into a pie chart in WEBI

    Hi ,
    Add 1 more Query with dimension that will have values
    Completed      Or      X
    Remaining      Or      Y
    Duplicate your Query And Keep only 1 Dimension [Extra_Dim]( Remember this Dim Name you have to use it in different way so it would be better if use any Dimension which is not there in First Query )
    Go To--> View Script --> Custom SQL
    write below code in Query Script Editor
    SELECT
      'Completed' As "CATEGORY"
    FROM
      "YOUR_TABLE"  Table__1
    Union
    SELECT
      'Remaining' As "CATEGORY"
    FROM
      "YOUR_TABLE"  Table__2
    And Save this Query .
    Now Rename this Query as Pie Dimension .
    Now You can Use [Extra_Dim] As [Achievment_Status]
    Create Measure Variable [Achievment_Val] as mention above .
    And use it

  • My Safari is reloading over and over and every time that I start the computer I need to put off and on the Wi-Fi to work properly.

    When I start the computer I try to open the safari but it start to reaload over and over, so I turn off the Wi-Fi and after turn on, then start Safari again, and it starts to work again. I believe that is not a problem of RAM because I put 16GB of RAM for not having ptoblems like this. So what is the problem? what should I do to solve them?

    Welcome to the iOS world of nonthinking, wherein the OS decides everything for you, whether or not that's what you want. Salient details described in http://www.apple.com/macosx/whats-new/features.html#resume
    See these for steps to resolve:
    http://hints.macworld.com/article.php?story=20110918051930924
    http://osxdaily.com/2011/08/01/turn-off-resume-per-app-in-mac-os-x-lion/
    http://restoremenot.info/

  • Displaying "Top N and Other" in Pie Chart

    Hello All,
    As the subject implies, we are trying to display in pie charr top 5 products by sales and bucket rest of the product sales in "Others". Oracle provided documentation gives below code. But I am not sure as how we can package this in view which can be used in chart
    RETURN "Top5Companies" AS SELECT
    "coName" AS "companyName",
    SUM("txnID") AS "numTxn"
    GROUP BY "coName"
    ORDER BY "numTxn" DESC
    PAGE(0,5)
    RETURN "Others" AS SELECT
    'Others' AS "companyName",
    SUM("txnID") AS "numTxn"
    WHERE NOT ["coName"] IN "Top5Companies"
    GROUP
    Edited by: 948378 on Sep 5, 2012 9:46 AM

    Hi, 
    For your first question, Other should show up if you have more than 10 groups generated.  Looking at the Group Tree, how many groups show up? 
    What happens if you did a Top5 instead of 10?  Does Other show in the Group Tree? 
    For your second question, Crystal will group on unique values regardless if the group is on a field or formula.  I have a sneaking suspicion there is either a leading or trailing space in the name.  Use the Trim function to remove the white spaces like: 
    IF (IsNull({Command.AcctPriKey}) or length(ToText({Command.AcctPriKey}))<1)
    then Trim ({Command.custname})
    else Trim ({NAcct_.Nacct});
    For your third question, throw the iif format out.  That was introduced because of dBase years ago and most people I know hate using it.  Go with the traditional.  Easier to read and figure out. 
    Good luck,
    Brian

  • Pie chart legend should display values and percents

    Hi All,
    Can any body suggest me how to display values and percent in pie chart legend.Thanks in advance.
    Edited by: 997414 on Apr 1, 2013 11:25 PM

    Hi,
    I used this tag : <SliceLabel textType="LD_TEXT_PERCENT"/>
    My full graph;
    chart:
    <Graph depthAngle="50" depthRadius="8" pieDepth="30" pieTilt="20" seriesEffect="SE_AUTO_GRADIENT" graphType="PIE"><LegendArea visible="false" automaticPlacement="AP_NEVER" position="LAP_BOTTOM" /><LocalGridData colCount="1" rowCount="{count(.//DSYATIRIMDAGILIMANA_ROW)}"><RowLabels><xsl:for-each select=".//DSYATIRIMDAGILIMANA_ROW" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><Label><xsl:value-of select="RAPORAD" /></Label></xsl:for-each></RowLabels><DataValues><xsl:for-each select=".//DSYATIRIMDAGILIMANA_ROW" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><RowData><Cell><xsl:value-of select="ORAN" /></Cell></RowData></xsl:for-each></DataValues></LocalGridData>
    <SliceLabel textType="LD_TEXT_PERCENT"/>
    </Graph>
    I hope, It helps you since I figure it out in very very hard way.
    This is the main reference : http://www.oracle.com/technetwork/middleware/reports/graph-dtd-technote-2-094743.html

  • How do I show the value of Males and Females in a Pie Chart?

    I am creating a sheet with demographics for my parish.  I have a column with "M/F" and in the rows assigned to specific names, I have placed an M if that person is Male and an F if that person is Female.  I would like to show the ratio between males and females in a pie chart.  I don't know too much about spredsheet software.  How can I go about showing these values/ratios in a pie chart?

    You should create two tables using the Table Insert tool (like Vince said):
    Then you can give the tables names by double clicking the name in the Sheets list (left):
    Then you can enter the data (or copy and paste from your existing table).  Then enter the formulas I provided previously, and graph.  There is a user guide and lot's of Apple-provided movies (http://support.apple.com/videos/#productivitysoftware) that can help you get through the basics.
    I hope this helps.
    Wayne

  • Material Characterstic values and its text

    HI,
    I need material Characterstic values and its texts 
    CABN Characteristic Detail
    AUSP Characteristic Values
    CAWN Characteristic Values
    CAWNT Characteristic Value Texts
    KSML Characteristic Allocation to Class
    But my AUSP table dont have all material numbers which i need to give the condition ausp-OBJNUM = mara-matnr and my mara-atinn filed also blank to fetch the values directly.
    But the CABN,CAWN,CAWNT holds the data
    Any new inputs and conditions other than these
    Regards
    Rashed

    Hi,
    You need to search the object number in INOB(Link between Internal Number and Object) table first then you will get the record from AUSP.
    In INOB you can put the material number in objek field
    sample attached
    MANDT CUOBJ              KLART OBTAB                            OBJEK                    
    013   000000000000021515 001   MARA                             000000000000905030       
    Hopefully It should solve your probelm.
    Regards,
    Atul

  • How to include both percentages and number values in a cross-tab chart?

    Hi,
    I created a cross-tab and a multiple pie chart using Crystal XI. I would like to include percentages as well as numbers in my pie charts' slices. Seems I can either show % or numbers but not both!
    The multiple pie chart compares different charges for different Departments. It has an On Change Of by "DifferentDepartments" and "ItemCharges" (e.g. Normal, Double Time, Time & half, Shift, Meal... )  and the Summary value is sum of "Labour".
    Is there any workaround available? Please advice.
    Thanks,
    Nazee
    Edited by: Nazee TVK on Feb 23, 2012 1:52 AM

    hi Nazee,
    this is possible sometimes, using a workaround, and depending on the values you're showing.
    instead of using your department field as the On Change Of field, create a new formula which is something like
    {departmentfield} + chr(10) + totext({your group level summary})
    as an example using the xtreme sample databae
    {Customer.Customer Name} + chr(10) +
    totext(Sum ({Customer.Last Year's Sales}, {Customer.Customer Name}))
    now in your Pie Chart switch the department field for the new formula you just created.
    i have attached a sample report...however, please note that the forums sometimes don't work with these attachments. so you can try different browsers or right clicking on the attachment and doing a save first etc.
    jamie

  • Linking Pie Chart & Table to Bubble Chart Values

    Hi All,
    I am new to Xcelsius and I have an issue with my drilldown.
    I have a Combo Box and choose Plants from this and my Bubble Chart updates according to the value in combo box.
    Now I want to hover over the 'bubble' and want a Pie Chart and Table to reflect the values from that bubble. The value in the Bubble is a total and I want the Pie Chart and Table to be splits of this total - eg. Total of 50 employees but want the Pie Chart and Table to reflect splits per team.
    I know the Destination Values from the Bubble Chart should be in the Pie Chart and the Drilldown should be enabled. However, the values that I want to show in the Pie Chart are different eg. Bubble Chart will say 50 but in the Pie Chart I want to see 5 segments of 10  - 50. ie. the Total of 50 split into the appropriate 5 teams. How do I create this linkage/drilldown where it takes the 50 and when I hover over this bubble, the Pie Chart shows the team split by looking up a different set of data. Have tried adding this into the drilldown area in the Pie Chart, where the source data is the split and the destination data is another area to pick up this data.
    Any advice would be much appreciated.
    Thanks,
    Scott

    Hi Maddy,
    Thanks for the reply.
    My scenario is :
    In the Combo Box, you choose an Industry.
    From each industry there are 4 values.
    Industry      Employees     Int FTE     Ext FTE     Total FTE
    Education     5000          5     8     13
    Retail          40000          15     18     33 etc.
    When I choose Education from the Combo Box, in the Bubble Chart I want to see a bubble for Education at the point of 5000 (X-axis) and 13 (Y-axis). This works fine.
    I now want to hover over the Education u2018bubbleu2019 and the Pie Chart will show a split between Int FTE & Ext FTE u2013 ie. 5 & 8. I have added the relevant details to the drilldown and I still can't get this to work.
    Also by hovering over the bubble, I want a table to change too, that shows a breakdown of what teams the Int FTE & Ext FTE is made up from and how many employees are in each team. This data is picked up from a different destination and I not sure how we link this to the data above.
    Hope this helps.
    Scott

  • How to display values and new char line (blank line)

    Hi,
    In database, one field contains values followed by new character lines (blank lines) after blank lines there is no values. Finally, I would say the field contains values and blank lines. Every thing is fine in database.
    In Crystal Reports the field is displaying only values. Need to display values and blank line.
    User is asking after values new character lines (blank line) to be shown. They enter like that in an application. The user doubt is why report is not showing what they enter in the application.
    In detail explanation, front end tool is ASP.NET and backend is SQL Server.
    User enter some values in note field, after that they hit enter button in the same field, cursor will go next line...user may hit u2018enter buttonu2019 more than 5 times. So note field contain values and some blank lines which are created by after hitting enter button.
    If user opens the application, they could see values plus blank lines in the note field.
    They are fine with the application.
    In Crystal Reports, the note field shows only values.
    User is questioning that why we could not see in report we enter.
    I checked in .Net application and SQL server database it is fine. It is displaying values and blank line.
    Please help me out how to display values followed by blank lines in Crystal Reports - the way they enter in the application.
    Thanks and Regards,
    Manjunath N. Jogin

    Hi,
    Sharonmat,
    I tried as you suggested. It is still displaying only values.
    I would like to explain again.
    it is not exactly null values.
    In .Net application it is called 'new char line'.
    it shows those many lines look like null.
    it is working fine in database.
    Why it is not working in Crystal Reports? I am wondering...
    Thanks for your suggestion.
    Debi,
    User may enter any number of blank lines or they may not enter blank lines.
    That is the reason I can not always give more height or blank text object.
    Thanks for your suggestion.
    Please suggest me some more suggestions,
    Thanks and Regards,
    Manjunath N. Jogin

  • Testmanagement: transport of business blueprints and test plans?

    For the moment we have  the following situation:
    We have a 3 system landscape. (development system, test system and productive system)
    On the the test system, the testmanagment module (testworkbench) was integrated. This is used by 5 test projects from extern SAP systems.
    My question: Is there a possibility to transport the Businesses Blueprints and the test plans of the actual test projects into the productive system?

    Hello Marc,
    We have experienced similar problems. A transport of the test plan and copies of the test plans have resulted in us loosing status values and test notes. 
    I was informed it had to do with the fact the information is stored in the GUI. How I don't know, I am not a technical person.
    I was wondering if you may have encountered the similar problems I have had above and found ways around it.
    You can reach me at [email protected] as well.

  • I need help making a pie chart

    Hello, hoping for some help with making a chart that will update as i continually input data
    I have a chart that has many columns logging details of win/loss records. I would like to make a pie chart that represents a set of columns and shows the ratio of wins for each of the columns.
    I will try and give some better details. There are 5 columns (j,k,l,m,n) and each represents a color. In each column there are check-boxes. 1 or more will be checked on each row. On the same row there is a tally of wins. each row represents a different day. What I am looking for is a pie chart that shows how many wins i have in each color.
    for example.
    nov 1st: 5 wins in color J
    nov 2nd: 2 wins in color k
    nov 3rd: 4 wins in colors m and n
    the pie chart will contain a total of 15 'wins' split up on the chart between each color....... 5(j) + 2(k) + 4(m) + 4(n). theoretically the J should take up 1/3rd of the pie and so on.
    I also have a total at the bottom of the colors column, but this will not show which color got the wins.
    Hopefully this makes some sense to understand and if I am very fortunate someone much smarter then me will be generous enough to help me out.
    Thank you very much, all help is appreciated.

    Hi Anthony,
    This table may be  what you want. I added a row at the top (you don't need that row. It is just may way of getting around the poor screen shots in this forum).
    I hid some columns, then I copied the table and pasted directly into this reply (I have had it with screen shots ).
    A
    F
    J
    K
    L
    M
    N
    Date
    Wins
    Colour J
    Colour K
    Colour L
    Colour M
    Colour N
    Nov 1
    1
    TRUE
    Nov 2
    1
    TRUE
    Nov 3
    2
    TRUE
    TRUE
    Checkboxes show as TRUE (not a tick) in this pasted table. But a tick = TRUE .
    Formula in F3 (Wins, Nov 1)
    =COUNTIF(J3:N3,"=TRUE")
    I hope this helps with your pie chart.
    Regards,
    Ian.

  • SSRS Report Builder 3.0 - Pie Chart

    Hi,
    I have Pie chart that displays Number of  items by Country,
    My data set is pulling the correct values.
    The 3D effect is true for the pie chart and the Series Labels are set to diplay out of the Slice.
    I used the collected style to be SingleSlice and not using percentages but just the values less than or = 5 to be collected to other countries slice.
    for labels format I am using a column value from the query where I Concatenate the Value and Name of the country as string as I am not showing the legend on the chart for more space
    All the values are showing up right except for one value for one slice which is added extra numbers at the beginning of the number part of the string.
    For Example , if for USA there are 320 items  it should should show up as USA - 320  as that is the value that the query bring and I double checked that. But that value dipslays USA - 12320 for some reason and this is happening only with one
    label.
    I might be missing somethign silly but if someone can save my time and help me it would be appreciated.
    Please let me know if you have any questions.
    Thanks,
    Chaitanya

    Hi Chaitanya,
    Sorry for the delay.
    I am unable to reproduce the issue in my test environment. The issue seems rather odd. Here, I suggest that you create a new report and design the Pie Chart from scratch, and then check the issue again.
    If the issue persists, please post the expression of the label data as well as the CustomAttributes settings of the target series of the Pie Chart. 
    Regards,
    Mike Yin
    TechNet Community Support

  • Create Multiple Pie Charts with Drill Down capability(foreach in mainreport

    Hello All,
    i need to create a report with 4 pie charts, which should have drilldown capability. i tried to do that, and i can do only for two charts. i need for the rest 2 also.
    Please help.
    Thanks

    See this thread:
    BO Design studio Chart Component issue ...!! | SCN
    If Chart is bound to DS_1 and On Select event of chart is as below:
    DS_2.setFilter(dimension, CHART_1.getSelectedMember(dimension));"
    This works when you click a value on one chart it will select another.
    I haven't tried it with hierarchies.

Maybe you are looking for

  • PowerMac G3 B/W will no longer recognize flash drive

    Ive been using a flash drive with my PowerMac to transfer files to my Mac mini. It always worked but now for some reason it won't show up on the desktop or finder. It shows up in disk utility though and I've tried both usb ports and nothIng.  Even tr

  • Nokia Lumia 2520 serial number?

    I am trying to find the serial number for this device so I can get some technical support.  Can anyone tell me how to find it?

  • Recently Migrated Files - Mail Accounts Grey out Randomly

    I recently migrated files from an older Macbook running Tiger to a newer Macbook Pro running Snow Leopard. Now some of my email accounts grey out when I check email and the accounts that are grey are different each time! I can still retrieve email on

  • Oracle 9i Database Software Registraton Does Not Work

    The link http://www.oracle.com/technology/software/registration/index.html?9ibooks does not work and shows the messgae, "An error occurred while processing the request. Try refreshing your browser. If the problem persists contact the site administrat

  • Original file could not be found when I click on song

    I had to restore my hard drive but had everything backed up. But I don't remember the exact directory it was in to point the Itunes library to. How can I find this previous link to the songs? When I right click on the song it doesn't show any previou