Pie chart doesn't show the label of the last slice

Post Author: saschaherrle
CA Forum: Charts and Graphs
Hi there...
I have this problem with displaying the label of the last pie slice of my report. It is working perfectly fine in my testing environment, but it just doesn't want to show in the client environmet... I don't know what to try anymore. I've tried all the other label location options, but they also dont help. There are five slices on the pie chart with the following values:
1.9%
43.6%
51.1%
2.3%
1.1%
All the labels and feeler lines are showing except for value number 5.
Any help or advice would be greatly appreciated. Thanks
P.S. I'm using Crystal Reports XI Version 11.0.0.1994 and the client is just running the Crystal Runtime (Maybe this helps... I hope)

ewilly wrote:Sorry to say that but i'm not unhappy to see i'm not alone to encounter this issue
I aggree with you : it's only a partial issue as those partitions are mounted under /media with their label name.
As krusader is able to retrieve the label name i don't think it's an udisks issue so it's more related to a kde functionnality. I looked for missing (optionnal or not) dependencies but without success.
Any idea is welcome... perhaps opening a bug could help ??
I have run out of ideas.
If you tried krusader, yes, it is quite safe to assume it is not a udisks problem, since I tried nautilus which uses udisks2. I also would rule out udev/systemd. Leaves solid, kdelibs, and the kdebase sources.
As said, on gentoo, kdelibs are compiled with udev dependency which I have not seen in the pkgbuild for kdelibs.
I think a bug report is a good idea.
Last edited by artoo (2012-09-06 18:01:49)

Similar Messages

  • I entered new fields in a form that was created last year to update it.  However, now when I view the responses, they are listed as Column 1, Column 5, etc.  It doesn't show a label for the actual field when I view the responses.  Can you please help?

    I entered new fields in a form that was created last year to update it.  However, now when I view the responses, the headings are listed as Column 1, Column 5, etc. rather than the name of the heading.  Can you please help?

    Hi Mike,
    CRSE is an OEM Product and for use with a custom application they have written. Unfortunately we don't their reports or how they are connecting, it would appear they were originally built off a SQL and then set to a Dataset in the app or they could be adding the data source at runtime. Lots of variations and without access to the source code to see what they are doing not much we can help you with.
    You need to contact the OEM Partner for help in resolving this and find out what you can and need to do to update your SP and work with their canned reports,
    Thank you
    Don

  • Histogram works, Pie Chart doesn't :(

    I have a simple form, which has 1 block, a block level "when-new-block-instance" trigger and 2 bean_area under the block (beans don't have any trigger code). This simple form is called from within another form when a button is pressed. The histogram (bar chart) works, but the simple pie chart doesn't work (only displays a single circle - not the slices on the pie). The related trigger code is below. Can anybody see what is wrong with the pie chart code ?
    Appreciated.
    =====================================================================
    -- Set the bean area properties
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA1',1,'CLEAR_BLOCK','');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA1',1,'GRAPHTYPE','VERTICAL_BAR');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA1',1,'ENABLE_TOOLTIPS','VALUES');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA1',1,'SET_DELIMITER','#');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA1',1,'SET_TITLE','Order Count By WHIP#red#b#14');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA1',1,'SET_FOOTER','WHIP Name#blue#12');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA1',1,'SET_DELIMITER',',');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA1',1,'SET_Y_LABEL','Move Your Mouse To View The Value For Each Bar');
    -- Use the following for a nice 3D look (if users want)
    -- SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA1',1,'SET_DEPTH','20,45');
    -- This should populate and display the data on the graph by using the related PJC
    DECLARE
    ordercount NUMBER(10);
    whipname VARCHAR2(25);
    vData VARCHAR2(200);
    vDelimiter VARCHAR2(1);
    cursor c1 is select distinct interface_name from pps_order order by interface_name;
    BEGIN
    vDelimiter := ',';
    open c1;
    fetch c1 into whipname;
    while (c1%found) loop
    select count(*) into ordercount from pps_order where interface_name=whipname;
    vData := 'Total Order Count Per WHIP'||vDelimiter||whipname||vDelimiter||ordercount;
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA1',1,'ADD_ROWDATA',vData);
    fetch c1 into whipname;
    end loop;
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA1',1,'ADD_DATA_TO_GRAPH','');
    close c1;
    END;
    -- THIS SECTION IS FOR THE PIE CHART
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA2',1,'CLEAR_BLOCK','');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA2',1,'GRAPHTYPE','PIE_GRAPH');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA2',1,'SHOW_PIE_LABELS','VALUE');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA2',1,'SET_DELIMITER','#');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA2',1,'SET_TITLE','Order Count By WHIP#red#b#14');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA2',1,'SET_FOOTER','WHIP Name#blue#12');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA2',1,'SET_DELIMITER',',');
    -- This should populate and display the data on the graph by using the related PJC
    DECLARE
    ordercount NUMBER(10);
    whipname VARCHAR2(25);
    vData VARCHAR2(200);
    vDelimiter VARCHAR2(1);
    cursor c2 is select distinct interface_name from pps_order order by interface_name;
    BEGIN
    vDelimiter := ',';
    open c2;
    fetch c2 into whipname;
    while (c2%found) loop
    select count(*) into ordercount from pps_order where interface_name=whipname;
    vData := 'Total Order Count Per WHIP'||vDelimiter||whipname||vDelimiter||ordercount;
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA2',1,'ADD_ROWDATA',vData);
    fetch c2 into whipname;
    end loop;
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA2',1,'ADD_DATA_TO_GRAPH','');
    close c2;
    END;
    GO_ITEM('BLOCK1.CLOSE');
    This uses the FormsGraph.jar file implementation as you can see. I know Frank Nimphius is the only expert when it comes to FormsGraph.jar at Oracle, but currently he is on vacation - so no official support to an unofficial (unsupported) charting implementation - but I thought there might be others who have done this before.
    Can someone who implemented a pie chart share his/her code here - a simple pie chart, nothing fancy (like the one that comes with the graph90.fmb file, which I followed but did not figure out why my implementation is not working). Something with the vData string or number of vData strings requirement? no explanation in the FormsGraph.jar doc and I am not a java programmer to figure it out from the java source code. I am looking for a simple trigger code for the pie chart - not like "look at the forms90.fmb that comes with the demo package" kinda answer.
    Thanx
    Message was edited by:
    zaferaktan
    Message was edited by:
    zaferaktan

    Any idea ?

  • IChart Pie Chart doesn't response to SelectionEvent

    Hi,
    I have a pie chart. I would like to have the slices in the pie chart clickable. When one slice is selected, I would like to display the detail information in another iGrid table. I have done it with iChart Bar with no problem. However, it seems like the pie chart doesn't response to any selection on the slices, except the legend tags for the whole chart.
    Did I miss some configuration?
    Thank you for your advice!

    Hi Yue,
    Instead of trying to click on the Chart, try clicking on the legend. It will work. It is working for me here.
    Use the same Selection Event and same Javascript. And click on the <b>Legend</b>. It will display the desired Value.
    For Example, i have used the below code for my SelectionEvent.
    <b>document.ChartName.getChartObject().getSelectedPen();</b>
    Hope this will help u.
    Regards
    Muzammil

  • Firefox 4.0 beta 8 doesn't show tab label in IBM Lotus Domino Web Access while earlier version of FF and other IE do.

    Firefox 4.0 beta 8 doesn't show tab label in IBM Lotus Domino Web Access while earlier version of FF and other IE do.

    neuwerld wrote:
    Ohh thanks guys!
    It worked as a charm, and thanks Brisbin33 for the autostart.sh tip.
    So the thing that caused my whole system not to work as it should was that I forgot to put a "&" after conky?
    haha that´s kinda anoying I have been sitting and looking through like a milllion files looking for the answer
    But again, really thanks!
    /Neuwerld
    that little "&" sends the conky process to the background freeing up the current process (your autostart.sh script) to finish doing what it's doing so you can move on to running openbox itself.  with this in mind, it should be obvious why keeping conky in the foreground would cause problems.
    also, replacing it with (sleep 1 && conky) & means... wait a second, when that's done successfully (&&) run conky, and put all of that () to the background.  that way openbox comes up immediatly and only a second later you've got your panel and monitor.
    all this after .xinitrc and before openbox

  • I am not able to import photos into Lightroom 5.7.  When I select a folder, it doesn't show a preview of the images and the import button is greyed out. ??

    I am not able to import photos into Lightroom 5.7.  When I select a folder, it doesn't show a preview of the images and the import button is greyed out. ??
    I have been using Lightroom 5 for 2-3 months now and all worked well, up until today's effort to import a new set of photos. I am working on a Mac with Yosemite 10.10.1.

    Go to the bibliothec module, select the folder, right click on the folder and hit synchronize
    Sorry I have only a german version , so don't know what your menu will show.

  • While playing games like NFS and CounterStrike my macbook pro it does connects to the hotspot by any device either a Windows laptop, but doesn't show or connect to the server (LAN) created by windows player.Or neither connects to the server that i created

    While playing games like NFS and CounterStrike my macbook pro it does connects to the hotspot by any device either a Windows laptop, but doesn't show or connect to the server (LAN) created by windows player. Or, any other devices doesn't  connects to the LAN server that i created in the Game.     
    Could any one help me please.

    Please do not post more than about 50 lines of console logs or output from an Application crash at a time. No one can make it through those.
    If you had a kernel panic, those are Full of good information and should be posted in their entirety. They are stored, and can be read back and posted using this article:
    How to log a kernel panic

  • I have Firefox 5 and Reminderfox. But Reminderfox doesn't show. What's the problem?

    I have Firefox 5 and Reminderfox. But Reminderfox doesn't show. What's the problem?

    Please click the '''Solved It''' button next to the answer that answered or solved your Firefox support issue, '''''it appears when you are logged in''''', so this thread gets marked as '''Solved''' to help other users who may have this same problem.

  • I have an iPhone 5 with LTE 4G but doesn't show this option in the settings.Can you help me please.

    I have an iPhone 5 with LTE 4G but doesn't show this option in the settings.Can you help me please.

    Ask your carrier. No one here works for Apple, represents Apple or Speaks for Apple, thus no one here can answer your question.

  • Chart:: preventing the label of the Y axis from being overlapped

    Hi,
    I am trying to figure out how to prevent the label of the Y axis from being overlapped by the axis tick labels.
    My best guess would be to add some padding on its right to give some more room to the tick labels (as well as decreasing their font size).
    But having looked at the "Styling chart with CSS" guide and at caspian.css, it seems there is no selector or particular styleclass defined for this label (same for the label of the X axis).
    Any clue before I end up writing another Jira bug fix request?
    Thanks
    Edited by: bouye on Feb 22, 2012 2:46 PM

    Hi Shwu,
    Please have a look at this discussion:
    Crystal Report Bar Chart Y Access Setting
    -Abhilash

  • After updating to 6.0 iPhone doesn't show in iTunes for the wireless sync

    I have the iPhone 4s, after updating to 6.0 it doesn't show in iTunes for the wireless sync. My iPad which is first gen. still shows up. If I plugin with usb it shows up but as soon as I unplug it disappears.
    When I click on the sync wireless on the iPhone , it trys to sync but nothing.

    it's okay, it is not silly. but yes it was on but i went ahead and turned it, (the phone) off rebooted and turned it back on and rebooted phone again to see if it helps it any.... but to no it did not change, it still doesn't show up. as well as when i look in on wifi and see choose network mine is not populated until after a couple seconds. so it has something to do with not being able to hold on to a wifi signal when going to sleep or putting phone to sleep via power button. i do not see the wifi signal meter until a couple seconds after i wake it up from sleep. and now neither my ipad or iphone show up in itunes. so there is issues i guess with something. i have tried everything an dam too frustrated to do anything more.

  • Help: How add mouse features to let it show the label of the item?

    Hi,
    I'd like to add mouse features so that whem mouse moves over an item, it will show the label of the item. Especially, on the tab of a tab page to show the full label.
    Thank you in advance.
    Jimmy

    Oracle Forms calls this feature "Tooltip", you will find it as property of many items.
    For Tab-Pages Tooltips don't exist because Forms displays Tab-Labels always in full length.
    Peter

  • Folder action to change the label of the folder

    Hi all
    I would like to use Automator/Folder Actions to set the Label of the folder to show that it contains a file that was created or modified as follows:
    Red if in the last three days,
    Orange if over three days but less than seven; and
    Yellow if over seven days but less than fourteen
    Oh, and clear the folder label if the contents of the folder are over fourteen days old.
    Is it possible to do using Automator and folder actions?
    Thanks
    Jai
    iMac G5; iBook G3; PB165c; PB170; Mac IIcx; Mac SE/30; Mac SE; Mac Plus; Newton 130; 2gen iPod 10G     Mac OS X (10.4.7)   MacUser since 1984... and waiting for a tablet (like the Nokia 770 with MacOSX)

    In Automator-No
    The trigger for folder actions to run is the act of adding a file/folder to the folder which has the action applied. If you don't add anything, they won't do anything.
    You could probably get close to what you want using Smart Folders. It won't be color-coded or perfect though because modifying a file doesn't always reflect on the modification date of the folder. And parent folders are not affected by changes made in sub-folders.

  • Need Help to update the labels in the GUI syncronously - Swing application

    Hello everyone,
    I need some help regarding a swing application. I am not able to syncronously update the counters and labels that display on my Swing GUI as the application runs in the background. But when the running of application is completed, then the labels on the GUI are getting updated, But I want update the labels and counters on the GUI syncronously as the code executes... below I am giving the format of the code I have written..............
    public class SwingApp extends JFrame{
            // here i have declared the label and component varibles like...
                      private JTextField startTextField;
           private JComboBox maxComboBox;
           private JTextField logTextField;
           private JTextField searchTextField;
           private JLabel imagesDownloaded1;
           private JLabel imagesDownloaded2;
           private JLabel imagesDidnotDownload1;
           private JLabel imagesDidnotDownload2;
                      private JButton startButton;
    //now in the constructer.............
    public Swing(){
    //I used gridbaglayout and wrote the code for the GUI to appear....
    startButton = new JButton("Start Downloading");
        startButton.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            try{
                 actionSearch();   //actionSearch will contain all the code and the function calls of my application...........
            }catch(Exception e1){
                 System.out.println(e1);
        constraints = new GridBagConstraints();
        constraints.gridwidth = GridBagConstraints.REMAINDER;
        constraints.insets = new Insets(5, 5, 5, 5);
        layout.setConstraints(startButton, constraints);
        searchPanel.add(startButton);
    //update is a function which initiates a thread which updates the GUI. this function will be called to pass the required variables in the application
    public void update(final int count_hits, final int counter_image_download1, final int didnot_download1) throws Exception{
         Thread thread = new Thread(new Runnable() {
             public void run() {
                  System.out.println("entered into thread");
                  System.out.println("the variable that has to be set is " + count_hits);
                  server_hits_count.repaint(count_hits);
                  server_hits_count.setText( " "+ Integer.toString(count_hits));
                  imagesDownloaded2.setText(" " + Integer.toString(counter_image_download1));
                  imagesDidnotDownload2.setText(" " + Integer.toString(didnot_download1));
                  repaint();
         //this.update(count_hits);
         thread.start();
    //Now in main............................
    public static void main(String[] args){
    Swing s = new Swing();
    s.setVisible(true);
    }//end of main
    }//end of class SwingAbove I have given the skeleton code of my application........ Please tell me how to update the GUI syncronously...
    Please its a bit urgent...............
    Thank you very much in advance
    chaitanya

    First off, note that this question should have been posted in the Swing section.
    GUI events run in a separate thread (the AWT / Event Dispatch Thread) than your program.
    You should be invoking AWT/Swing events via SwingUtilities.invokeLater().
    If for whatever reason you want to have the program thread wait for the event to process
    you can use invokeAndWait().
    http://java.sun.com/javase/6/docs/api/javax/swing/SwingUtilities.html

  • I received a $25 iTunes gift card when cashing in my Air Miles points and when removing the label on the back or the card (which had tape over top of it) there is a number missing from the 16 digit number.  What do I do?

    I received a $ 25 iTunes gift card - when I cashed in some air miles points.  Unfortunately the label on the back was covered in tape and when I tried to remove the tape and the label I found that there were only 15 numbers out of the sixteen.  How can I find out what the number/letter is that is missing?  If I provide you with the GCA # will that help?
    Please get back to me,

    Consult this handy guide: iTunes Store: Invalid, inactive, or illegible codes

Maybe you are looking for

  • How can I reinstall iLife on my macbook without the CD?

    I once had iLife on my macbook, however when I updated to OS X Lion, I couldn't find it anymore. I am currently running version 10.7.3. I need to reinstall iLife without using the CD and without going to the Apple store as I am no where near one. P.S

  • How is Pages for you?

    Hey everyone, I just bought Iwork for my Mac and I basically got it for the work processing (Pages). Like many people, I work in a MS Word world and I was wondering if Pages is an effective substitute?

  • Unable to enter code to connect to wi-fi network

    In the lobby of a motel with wi-fi network. The instructions was that upon initial connection the network would ask for a code which was to be entered. I went to setting, selected wi-fi and the name of the network it found. The Ipad brought up a new

  • Parent Child menu in product catalogue - PHP MySQL

    Hi, I am trying to build a product catalogue, can anyone tell me how to create parent child menu system, ie; Phone>Nokia, Ericsson, etc is there a tutorial how to do this? Thanks Bert

  • Lisa245

    trying to download songs from itunes on the ipod and it wants to verify the payment information.  it keeps asking for a security code and no matter what i enter it says it's wrong.