Creating Pie Chart?

Hi All,
2 problems:
I am attempting to create a Pie Chart in VC but it does not work, I have built other graphs with success.
The data I am using is simple, I have one Data column Actual Amount and another Target Amount, I simply want to put both of them into a Pie chart and show how much Target is still left to achieve compared to Actual.
When i attempt this all i get is one full amount?
Another problem is i want the value displayed on my line chart rather than just when i hover my mouse over the Line Chart?
Any advice appreciated,
Thanks

John,
VC does not support displaying the data series on charts (other than hovering over it).
As for the other problem of displaying two data series on the same pie chart, try charting them on separate pie charts instead? what is ur query drilled by? to see the actual vs target amts, i would think it would be easier to view if you plotted them as bar/column charts (just a suggestion)
prachi

Similar Messages

  • Trouble creating pie-chart

    Post Author: ujain82
    CA Forum: WebIntelligence Reporting
    Hello,      I am having trouble creating pie chart. I am calculating different count values from different data providers. Now I need to create a pie chart showing the proportion for each count as I can find the percentage of count.
    My scenario(task):I need count on persons depending on searching on complaint text. So for each search I have a data providers. Like this I am searching for 8 criteria. So I have different data providers for each search. I get person counts from each criteria.
    Now I want to show it in a pie chart. But I could not make it done.Does anyone faced a similar problem? How do I solve my problem?
    Any comments?

    Post Author: Chris Chen
    CA Forum: WebIntelligence Reporting
    Hi ujain82,
    Because you have some data provider,so some metric may have no conjunction,i suggest that you creat variables to reuse them.

  • Create pie chart in jsp

    how to create pie chart in jsp based on sql server 2000 database
    please give example or code with explanation

    http://sourceforge.net/projects/jfreechart
    - Saish

  • Problem creating pie-chart

    Post Author: ujain82
    CA Forum: Desktop Intelligence Reporting
    Hello,      I am using BO 6.1
    I am having trouble creating pie chart. I am calculating different count values from different data providers. Now I need to create a pie chart showing the proportion for each count as I can find the percentage of count.
    My scenario(task):I need count on persons depending on searching on complaint text. So for each search I have a data providers. Like this I am searching for 8 criteria. So I have different data providers for each search. I get person counts from each criteria.
    Now I want to show it in a pie chart. But I could not make it done.Does anyone faced a similar problem? How do I solve my problem?
    Any comments?

    Attached is part of the sub-vi where I am having the problem. I tell Excel which cells to use for the pie chart. If I use "Source 1" (8 cells) the pie chart is created successfully. If I use "Source 2" (14 cells) the pie chart only uses the first cell. I can go to the Excel file and select all 14 cells manually and the pie chart displays correctly. I also tried 9 cells with no luck, it seems that 8 cells are the limit. I am trying to find what is causing the limitation. I have also attached the sub-vi. 
    Attachments:
    Pie chart block diagram.JPG ‏61 KB
    M-51539-001 Create Pie Chart.vi ‏108 KB

  • How to create pie charts in BIP 11g using .XSL?

    Hi,
    Requirement is to create a multi sheet excel output. Because of this. I am going the XSL way and not RTF.
    Now, I need to create pie charts using XSL as part of the output.
    * Is it possible to create pie charts in .XSL? If so, any pointers?
    * I tried some SVG coding by referencing the below link but not result:
    <http://www.svgopen.org/2003/papers/CreatingSVGPieChartsThroughWebService/index.html#S2.1>
    * I also created the required chart in RTF and tried to use the underlying XSL-FO code. Not sure if I have used it in the right way. Has anyone tried doing that?
    If you have any info, please share.
    Thanks,
    Divya

    One more point : I came across a link which talks about Bar charts using XSLT :
    http://www.roguewave.com/Portals/0/products/imsl-numerical-libraries/java-library/docs/5.0.1/chartpg/xml_xslt.html
    so, I am hoping, there is a way to do pie charts as well?
    Thanks,
    Divya

  • Create Pie Chart and Vertical bar chart using report builder 3.0 with sharepoint custom list

    Hi All,
    I have a client requirement to create reports which should show the graphical representation of SharePoint Custom List data. The reports are Month wise and YTD. Also i have to create dashboard.
    For creating reports, i have heard about Report Builder and SSRS. I have SQL server 2008r2 and installed report builder 3.0 but i am not aware of creating reports(KPI, Pie Chart, Vertical bar, etc.,) with sharepoint customlist.
    Can some one please help me on this.
    MercuryMan

    Here is some information about using the SharePoint List Data source with SSRS/Report Builder/BIDS:
    http://www.infotoad.com/blog/post/2012/10/11/using-a-sharepoint-list-connection-type-as-a-data-source-for-reporting-services.aspx
    http://technet.microsoft.com/en-us/library/ee633650.aspx
    http://www.codeproject.com/Articles/24469/SQL-Reporting-Services-data-from-SharePoint-lists
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Creating pie chart diagram in java  and converting into BMP file

    hi all ,
    my req. is to create draw a pie chart diagram and store
    the picture in BMP. it is Possible. if so how ?
    cheers
    senthil

    Hi Senthil,
    This response is a bit late but I hope it can help in some way.  Your requirement (to create draw a pie chart diagram and store the picture in BMP) is possible and actually quite easy if you don't mind using two open source libraries.  In his previous response to this thread, Detlev mentioned JFreeChart for as a solution for charting however he also mentioned that it lacks support for BMP.  Although this is true, you can use the JFreeChart library (http://www.jfree.org/jfreechart/index.html) in conjunction with an imaging library to meet your requirement.  I have used JFreeChart on multiple projects and I highly recommend it.  For the imaging library you have many options, however the only one I have used is The Java Imaging Utilities (JIU - http://jiu.sourceforge.net/).  Using these two class libraries, you can generate your pie chart and save it to a BMP file with the following block of code:
         try
             JFreeChart chart = this.createChart();
             FileOutputStream streamOut = new FileOutputStream("your/files/path/BMPfile.bmp");
             BufferedImage image = chart.createBufferedImage(600, 300);
             if(image == null)
                  reportError("Chart Image is NULL!!!!!!!!");
                  return(false);
             RGB24Image rgbImage = ImageCreator.convertImageToRGB24Image(image);
             Codec codec = new BMPCodec();
             codec.setImage(rgbImage);
             codec.setOutputStream(streamOut);
             codec.process();
             codec.close();
             streamOut.flush();
             streamOut.close();
        }catch(IOException ioExcept)
             // throw or handle IOException...
             return(false);
        }catch(OperationFailedException opFailedExcept)
             // throw or handle OperationFailedException...
             return(false);
    The first line inside the catch block calls a helper method that should create the actual chart using the JFreeChart library.  Once you have your chart instance (all chart types are represented using the JFreeChart class), you can then retrieve a BufferedImage of the chart (JFreeChart.createBufferedImage(int width, int height);).  In our situation, the BufferedImage class will act as an "intermediate" class, for both libraries (the charting and imaging) can make sense of BufferedImages.  The rest of the code deals with storing the generated chart (the BufferedImage) as a BMP file to disk.  The RGB24Image, Codec, BMPCodec, CodecMode, and OperationFailedException classes are all part of the JIU library.  Also, note that the storage  source is not solely limited to a File on disk; the Codec.setOutputStream(OutputStream os) method will accept any subclass of OutputStream.  This implies that not only can you store to the actual App Server disk (where your app is running) but also to sources such as Knowledge Management (KM) resources or even directly to the clients browser (in the case of an iView). 
    Once again, sorry for the late response and let me know if you have any questions regarding the code above. 
    Regards,
    Michael Portner

  • Creating PIE Chart in ABAP for all Purchase Orders in a particular week

    Hi All ,
    I want to create a pie chart based on the value of purchase orders in one week .
    Kindly guide me as to how to create a pie chart.
    Warm Regards
    Anirban Basu
    + 919836477442

    Hi Vivek ,
    Thanks for your response . However I am not able to identify which parameter you want to set as PI .
    can you kindly attach an example.
    Regards
    Anirban

  • Creating Pie Chart in HAB

    I am developing an application using Application Builder and successfully created a Bar Chart using "cube view chart bean" and NetCharts. However, I have some problem when creating a Pie Chart. I don't know how to set the SliceData parameter. Is it supposed to be the same as DataSets parameter in Bar Chart such as "(${LOOPROWS}, (${ROWNAME_C_C}))".Thx

    Hi Vivek ,
    Thanks for your response . However I am not able to identify which parameter you want to set as PI .
    can you kindly attach an example.
    Regards
    Anirban

  • Can we create Pie Charts in XML Publisher

    Hello All ,
    How can we see the Pie Charts in the PDF output through XML Publisher , can any one guide me in this regard . Can we do this with RTF and how can we include this chart in the RTF .
    It would be great if some one help me in this regard.
    Thanks,
    Sairam.

    see this link http://blogs.oracle.com/xmlpublisher/2007/02/22#a161

  • Pie chart  display error

    Hi
    I created pie chart using CFCHART tag. In the chart display,
    data values overlap on one another in the display. How to rectify
    this error.
    Kindly help me in this regard.
    Advance thanks

    I am using  ColdFusion Report Builder 9 to generate a PDF, so there is no code to provide, but here is an example of my data:
    fruit
    count
    apples
    112
    oranges
    304
    bananas
    0
    pears
    0
    grapes
    16
    strawberries
    80
    plums
    48
    pineapples
    32
    blueberries
    16
    raspberries
    32
    apricots
    256
    tangerines
    705
    cherries
    1
    peaches
    0
    With 'label column: fruit' and 'value column: count', when I select 'data label: pattern', for my pie chart, the labels overlap.

  • PIE chart in Oracle 9i Reports

    Hi,
    I'm using Orcle 9i Report builder to create reports.I'm creating web-source and saving it as JSP.Now I want to add 'PIE' charts into my reports.But, when I'm using the 'Graph' option in 'Insert' menu,it's not creating the 'PIE chart' properly.Pls anybody help me know how can I create 'PIE chart'
    Thanks in advance
    Rajesh K.R

    Hi Rajesh,
    Suppose you want to show salaries of a few employees in a Pie Chart (this is just a dummy graph to explain the steps - you can build more meaningful graphs). So you want that each employee's salary should be shown as a percentage of the total. Follow these steps:
    1. Use the query - Select empno, sal from emp
    2. Go to the web layout, place your curson in the rw:dataArea tags, and choose Insert > Graph
    3. In the Graph wizard, choose Pie Chart, select empno in X-axis, and sal in the Y-axis
    4. In the "Layout" step, drag "sal" from groups into the slices field
    5. Fill in the titles, etc, and click finish.
    Click "Run to Web" in the builder, and you should see the pie chart in the web page.
    Navneet.

  • ActiveX pie chart range limit

    I have a problem with creating a pie chart using ActiveX that seems to be related to the range. When I give it a source of 8 cells (source 1) the pie chart works fine (Right Pie). If I give it 9 cells (source 2) the pie chart data has 9 series instead of the 1 it should have (Wrong Pie). If I go into Excel I can correct it manually. I have been using this sub VI for a while with no problems but always with fewer than 8 cells. 
    I am using Excel 2007 version 12.
    Attachments:
    M-51539-001 Create Pie Chart.vi ‏108 KB
    Right Pie.JPG ‏124 KB
    Wrong Pie.JPG ‏114 KB

    Attached is part of the sub-vi where I am having the problem. I tell Excel which cells to use for the pie chart. If I use "Source 1" (8 cells) the pie chart is created successfully. If I use "Source 2" (14 cells) the pie chart only uses the first cell. I can go to the Excel file and select all 14 cells manually and the pie chart displays correctly. I also tried 9 cells with no luck, it seems that 8 cells are the limit. I am trying to find what is causing the limitation. I have also attached the sub-vi. 
    Attachments:
    Pie chart block diagram.JPG ‏61 KB
    M-51539-001 Create Pie Chart.vi ‏108 KB

  • Below decimal on pie chart

    I created pie chart but value is shown with below decimal point.
    I pull count(*) to value parameter, so do not need below decimal, but seen like 122.00.
    How can I remove .00 from the value on Pie chart?

    It is very odd.
    I have 4 pie chart on a page.
    Today, I can see no below decimal from 3 of 4 pie charts.
    One pie chart still shows below decimal. But this one also used to be 2 below decimal, but it's one below decimal today.
    I tried round/trunc for the 2nd chart, value moves(e.g. 1.0 -> 0.0), but one below decimal persist.

  • Pie chart multiple levels

    Hello,
    I'm looking for software to create pie charts with multiple levels. I tried Numbers but it didn't work out. Does anyone has tips for Numbers or other software that I can use? Thanks in advance.
    Greetings,

    I also don't have many experiences in this kind of thing. However, I recently happened to read something about WinForms chart UI control which include the pie chart creating function. Not sure that kind of thing would be helpful or not.

Maybe you are looking for

  • Acrobat Pro 9 Extended?

    Ok, I've been asking a lot of questions on this forum for a while, and now have another one. My boss has asked me to create a form-our company does document imaging, meaning we scan paper and help companies go paperless. One area in which we'd like t

  • Pictures not printing?

    I downloaded a knitting package with 50 pages.  It has several pics on each page.  The document prints but the pics won't come in.  Any ideas.  I have tried to reach the publisher to no avail. 

  • How to Get XDCAM Transfer files into FCP scratch disk locations

    Hi I'm new to XDCAM transfer. I have XDCAM Browser and Transfer, latest versions. I have successfully imported into FCP, but I was surprised to see the footage stored in a default 'Movies' location. I thought, okay, I'll just change the import locati

  • QT Pro to Compressor?

    Is there a way to export directly to Compressor from QT Pro? It would make a nice feature. It should be within the realm of possibility--Final Cut can do it.

  • Motion 5 Commands set

    In Motion 5 there is an option under Motion > Commands where you can set them to Final Cut Pro, what does this do? How does it work? Thanks