Overlapping chart text

Hello,
when you build a pie chart you can choose between different chart styles. Yet only 'Default' has lines between the values and the pie slices and no problems with overlapping text. Every other style puts the text directly to the slice. Imagine an output with
Value Description
98%   Success
1%   Warning
1%   FailureThen the two 1% values are at the top and the text for each is unreadable, because 'Warning' overlapps with 'Failure'.
Regards
Marcus

Yep, yours could be next.  You might want to check with your IT department and see if they have done anything to her computer. Something changed somewhere, and changed again between yesterday and today. Have them help you find out what.
(Our IT makes changes all the time and we don't know until a problem pops up. I had a good one a few months ago.)
Is it only when she is looking at the report on her monitor? Does it work if she prints it? if it does it may be a driver for her monitor. If it is only when she prints it, it may be a printer driver. If both fail, then both drivers could be a problem.
Try a different font and see if it makes a difference.
What about other reports. Are they messing up on her computer today? 
You may want to create a new template/report and see if it works it works on her computer. If so, re-create all the reports on the new template. Not a pleasant thought, but it may be one way to resolve it.
Seems like I remember somebody posting a simular thread not too long ago where a report was not running correctly on someone elses computer.
This one was a dll problem but it is not the one I was thinking of: [Report runs fine on some workstations, won't refresh on others--WHY?   |Re: Report runs fine on some workstations, won't refresh on others--WHY?]
Debi

Similar Messages

  • Overlap of texts in web page when texts are enlarged

    When I display a webpage with texts in boxes, and I press Command + to increase the display size of the texts, usually the surrounding box also expands or adjusts to accommodation the larger texts. But when I press Command + again, then the texts from adjacent boxes start to overlap.
    A similar thing also happens with Firefox, except that I can press Command + a few more times before the texts start to overlap.
    Is there any preference in Safari that I can adjust to delay the overlapping of texts?

    Try
    http://au.yahoo.com/
    In Safari, as soon as I press Command + twice, then the texts in the top right corner about Mail and Weather start to overlap.
    But in Firefox, even after I press Command + 8 times to zoom to the maximum, everything stays in proportion without any overlap of texts.

  • How to make text fields grow dynamically without overlapping the text below it?

    Hi..I'm a newbie to Adobe Livecycle and I need a create a form that has a textfield that should grow dynamically and expand without overlapping the text below it. I tried using subforms, saving as Dyanmic PDF, checking expand to fit option but nothing seem to work! I really need help designing this form.

    Thanks for the reply. Yes I did but still didn't work out well. I'm trying to add my pdf form as an attachment here but I'm unable to do it! Where do I find add attachment option?

  • Overlap of Text character in Printout

    Hi,
      When taking printout of standard reports (Not Zreports) , the text character is overlapping with each other in printout.I have tried to change the propeties of print but of no result. My clinet wants printout with no overlaping of text character.Please have a look at it.

    Dear,
    which is the report name?
    Thanks.
    mauri

  • Multiple Tooltips are not showing up when hovering over overlapping chart items

    Hi!
    I ran into a problem which I am unable to fix. Either I am missing something very obvious or this is a bug. I set up a LineChart with two series. One series has multiple overlapping data points, and both series overlap in one point.
    Data tips are only getting displayed where the data points of the two different series overlap. Hovering over the overlapping points of a single series does not lead to multiple data tips being displayed. According to Flex SDK docs this should be possible.
    Here's a simple example which shows the problem:
    <?xml version = "1.0"?>
    <s:Application xmlns:fx = "http://ns.adobe.com/mxml/2009"
                      xmlns:mx = "library://ns.adobe.com/flex/mx"
                      xmlns:s = "library://ns.adobe.com/flex/spark"
                      xmlns:local = "*">
         <fx:Script>
              <![CDATA[
                   import mx.charts.HitData;
                   import mx.collections.ArrayCollection;
                   import mx.graphics.SolidColorStroke;
                   [Bindable]
                   private var values:ArrayCollection = new ArrayCollection([{date: new Date(2010, 10, 15), value:120},
                        {date: new Date(2010, 11, 15), value: 60},
                        {date: new Date(2011, 0, 15), value: 40},
                        {date: new Date(2011, 0, 30), value: 7},
                        {date: new Date(2011, 1, 15), value: 30},
                        {date: new Date(2011, 1, 18), value: 61},              
                        {date: new Date(2011, 1, 23), value: 80}]);
                   [Bindable]
                   private var values2:ArrayCollection = new ArrayCollection([{date: new Date(2010, 10, 15), value:120},
                        {date: new Date(2010, 11, 15), value: 200},
                        {date: new Date(2011, 0, 15), value: 29},
                        {date: new Date(2011, 0, 15, 13, 59, 99), value: 29},
                        {date: new Date(2011, 0, 15, 13, 58, 99), value: 29},
                        {date: new Date(2011, 0, 15, 13, 57, 99), value: 29.5},
                        {date: new Date(2011, 0, 15), value: 29.5},
                        {date: new Date(2011, 0, 15), value: 30},
                        {date: new Date(2011, 0, 15), value: 30.5},
                        {date: new Date(2011, 0, 15), value: 30.5},
                        {date: new Date(2011, 0, 15), value: 30.5},
                        {date: new Date(2011, 0, 15), value: 30},
                        {date: new Date(2011, 0, 15), value: 30},
                        {date: new Date(2011, 0, 15), value: 30},
                        {date: new Date(2011, 0, 15), value: 31},
                        {date: new Date(2011, 0, 15), value: 31},
                        {date: new Date(2011, 0, 30), value: 70},
                        {date: new Date(2011, 1, 15), value: 2},
                        {date: new Date(2011, 1, 18), value: 180},              
                        {date: new Date(2011, 1, 23), value: 80}]);
                   [Bindable]
                   private var minDate:Date = new Date(2010, 10, 1);
                   [Bindable]
                   private var maxDate:Date = new Date();
                   private function getDataTip(hitData:HitData):String
                        return "<b>Tip:</b><br> Date: " + hitData.item.date + '<br>Value: ' + hitData.item.value;
              ]]>
         </fx:Script>
         <s:layout>
              <s:VerticalLayout/>
         </s:layout>
         <s:width>100%</s:width>
         <s:height>100%</s:height>
         <s:Panel title = "Chart Test">
              <s:width>100%</s:width>
              <s:height>100%</s:height>
              <s:layout>
                   <s:VerticalLayout/>
              </s:layout>
              <mx:PlotChart id = "chart">
                   <mx:width>100%</mx:width>
                   <mx:height>100%</mx:height>
                   <!-- Uncomment this in order to see that there are overlapping items -->
                   <!-- mx:showAllDataTips>true</mx:showAllDataTips-->
                   <mx:selectionMode>multiple</mx:selectionMode>
                   <mx:dataTipMode>multiple</mx:dataTipMode>
                   <mx:showDataTips>true</mx:showDataTips>
                   <mx:dataTipFunction>getDataTip</mx:dataTipFunction>
                   <mx:horizontalAxis>
                        <mx:DateTimeAxis minimum = "{minDate}"
                                             maximum = "{maxDate}"/>
                   </mx:horizontalAxis>
                   <mx:series>
                        <mx:LineSeries dataProvider = "{values}"
                                                      displayName = "Series 1"
                                                      yField = "value"
                                                      xField = "date"
                                                      interpolateValues = "true"
                                                      lineStroke = "{new SolidColorStroke(0x00FF00, 3, 0.5)}"
                                                      stroke = "{new SolidColorStroke(0x00FF00, 3, 0.5)}"
                                                      itemRenderer = "mx.charts.renderers.CircleItemRenderer"/>
                        <mx:LineSeries dataProvider = "{values2}"
                                                      displayName = "Series 2"
                                                      yField = "value"
                                                      xField = "date"
                                                      interpolateValues = "true"
                                                      lineStroke = "{new SolidColorStroke(0xFF0000, 3, 0.5)}"
                                                      stroke = "{new SolidColorStroke(0xFF0000, 3, 0.5)}"
                                                      itemRenderer = "mx.charts.renderers.CircleItemRenderer"/>
                   </mx:series>
              </mx:PlotChart>
         </s:Panel>
    </s:Application>
    Any help is appreciated!
    Thanks!

    Hi!
    I ran into a problem which I am unable to fix. Either I am missing something very obvious or this is a bug. I set up a LineChart with two series. One series has multiple overlapping data points, and both series overlap in one point.
    Data tips are only getting displayed where the data points of the two different series overlap. Hovering over the overlapping points of a single series does not lead to multiple data tips being displayed. According to Flex SDK docs this should be possible.
    Here's a simple example which shows the problem:
    <?xml version = "1.0"?>
    <s:Application xmlns:fx = "http://ns.adobe.com/mxml/2009"
                      xmlns:mx = "library://ns.adobe.com/flex/mx"
                      xmlns:s = "library://ns.adobe.com/flex/spark"
                      xmlns:local = "*">
         <fx:Script>
              <![CDATA[
                   import mx.charts.HitData;
                   import mx.collections.ArrayCollection;
                   import mx.graphics.SolidColorStroke;
                   [Bindable]
                   private var values:ArrayCollection = new ArrayCollection([{date: new Date(2010, 10, 15), value:120},
                        {date: new Date(2010, 11, 15), value: 60},
                        {date: new Date(2011, 0, 15), value: 40},
                        {date: new Date(2011, 0, 30), value: 7},
                        {date: new Date(2011, 1, 15), value: 30},
                        {date: new Date(2011, 1, 18), value: 61},              
                        {date: new Date(2011, 1, 23), value: 80}]);
                   [Bindable]
                   private var values2:ArrayCollection = new ArrayCollection([{date: new Date(2010, 10, 15), value:120},
                        {date: new Date(2010, 11, 15), value: 200},
                        {date: new Date(2011, 0, 15), value: 29},
                        {date: new Date(2011, 0, 15, 13, 59, 99), value: 29},
                        {date: new Date(2011, 0, 15, 13, 58, 99), value: 29},
                        {date: new Date(2011, 0, 15, 13, 57, 99), value: 29.5},
                        {date: new Date(2011, 0, 15), value: 29.5},
                        {date: new Date(2011, 0, 15), value: 30},
                        {date: new Date(2011, 0, 15), value: 30.5},
                        {date: new Date(2011, 0, 15), value: 30.5},
                        {date: new Date(2011, 0, 15), value: 30.5},
                        {date: new Date(2011, 0, 15), value: 30},
                        {date: new Date(2011, 0, 15), value: 30},
                        {date: new Date(2011, 0, 15), value: 30},
                        {date: new Date(2011, 0, 15), value: 31},
                        {date: new Date(2011, 0, 15), value: 31},
                        {date: new Date(2011, 0, 30), value: 70},
                        {date: new Date(2011, 1, 15), value: 2},
                        {date: new Date(2011, 1, 18), value: 180},              
                        {date: new Date(2011, 1, 23), value: 80}]);
                   [Bindable]
                   private var minDate:Date = new Date(2010, 10, 1);
                   [Bindable]
                   private var maxDate:Date = new Date();
                   private function getDataTip(hitData:HitData):String
                        return "<b>Tip:</b><br> Date: " + hitData.item.date + '<br>Value: ' + hitData.item.value;
              ]]>
         </fx:Script>
         <s:layout>
              <s:VerticalLayout/>
         </s:layout>
         <s:width>100%</s:width>
         <s:height>100%</s:height>
         <s:Panel title = "Chart Test">
              <s:width>100%</s:width>
              <s:height>100%</s:height>
              <s:layout>
                   <s:VerticalLayout/>
              </s:layout>
              <mx:PlotChart id = "chart">
                   <mx:width>100%</mx:width>
                   <mx:height>100%</mx:height>
                   <!-- Uncomment this in order to see that there are overlapping items -->
                   <!-- mx:showAllDataTips>true</mx:showAllDataTips-->
                   <mx:selectionMode>multiple</mx:selectionMode>
                   <mx:dataTipMode>multiple</mx:dataTipMode>
                   <mx:showDataTips>true</mx:showDataTips>
                   <mx:dataTipFunction>getDataTip</mx:dataTipFunction>
                   <mx:horizontalAxis>
                        <mx:DateTimeAxis minimum = "{minDate}"
                                             maximum = "{maxDate}"/>
                   </mx:horizontalAxis>
                   <mx:series>
                        <mx:LineSeries dataProvider = "{values}"
                                                      displayName = "Series 1"
                                                      yField = "value"
                                                      xField = "date"
                                                      interpolateValues = "true"
                                                      lineStroke = "{new SolidColorStroke(0x00FF00, 3, 0.5)}"
                                                      stroke = "{new SolidColorStroke(0x00FF00, 3, 0.5)}"
                                                      itemRenderer = "mx.charts.renderers.CircleItemRenderer"/>
                        <mx:LineSeries dataProvider = "{values2}"
                                                      displayName = "Series 2"
                                                      yField = "value"
                                                      xField = "date"
                                                      interpolateValues = "true"
                                                      lineStroke = "{new SolidColorStroke(0xFF0000, 3, 0.5)}"
                                                      stroke = "{new SolidColorStroke(0xFF0000, 3, 0.5)}"
                                                      itemRenderer = "mx.charts.renderers.CircleItemRenderer"/>
                   </mx:series>
              </mx:PlotChart>
         </s:Panel>
    </s:Application>
    Any help is appreciated!
    Thanks!

  • Pie Chart -- Text on Axis

    Help. I have created a pie chart. The chart has a title at the top and the legend appears to the right of the pie chart. However, my problem is there is "text" that is appearing at the bottom of the pie chart with the name of the data values column name. How can I get that text (subtitle) to disappear. Ex.
    O ---------> pie chart with data values showing and legend to the right (okay).
    xxxxx -------> text at the bottom of pie chart (do not want this text to appear). I'm not sure if this is
    considered "text" or a "label". I just need to turn it off. Help
    Thanks in advance!

    HI,
    While SAP solves the problem , you can do a quick fix by displaying only one either Char or % on pie chart and have a legend to display the other value(i.e normally charecterstic).
    Regards
    Madhukar

  • Images overlap with text when after creating pdf: InDesign CS

    Good morning,
    I am using bot InDesign CS and CS2, and I am having a problem as the following:
    After creating the pdf, images overlap with one another, or the text overlap behind the images so on.
    First, I would like to mention the overlapped images had no problem at the previous version of the pdf. If I make a change on the page "06" for example and then recreate the pdf, a couple of images in the other pages move to the different place through the document.
    So I tend to "replace" the changed pages into the previous version of the pdf instead of recreating the pdf for all pages.
    Is this kind of bug or features of InDesign?
    It would be very much appreciated if anyone answer me.
    Warm regard, Andrew.

    The PDF that was placed into ID loses all interactivity and form fields. There is no way to do what you want.
    Bob

  • Rotated ASCII characters overlap in Text Layout Framework with specific Japanese/Chinese fonts

    I am trying to layout rotated text with Text Layout Framework. Mostly okay, but when it comes to specific Japanese/Chinese fonts, problem happens - "hankaku" alphanumeric characters(in other words, ASCII characters) overlap in those fonts. (Full-width "zenkaku" characters have no problem, though)
    When "HG丸ゴシックM-PRO" or "HG正楷書体-PRO" are specified as fontFamily(both come with Office - common fonts in Japanese Windows environment), characters are wholly overlapped.
    When "SimSun", "NSimSun" or "SimHei" are specified as fontFamily(Chinese fonts, all come with Japanese Windows XP), characters are slightly overlapped.
    If anyone knows a solution or a workaround to this, please let me know.
    Sample code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="initapp();">
        <mx:Script>
            <![CDATA[
                import flashx.textLayout.container.ContainerController;
                import flashx.textLayout.elements.ParagraphElement;
                import flashx.textLayout.elements.SpanElement;
                import flashx.textLayout.elements.TextFlow;
                import flash.text.engine.TextRotation;
                import mx.core.UIComponent;
                private function initapp():void
                    var container:UIComponent           = new UIComponent();
                    var textflow:TextFlow               = new TextFlow();
                    var controller:ContainerController  = new ContainerController(container);
                    var paragraph:ParagraphElement      = new ParagraphElement();
                    var span:SpanElement                = new SpanElement();
                    textflow.fontFamily          = "HG丸ゴシックM-PRO";
                    textflow.textRotation        = TextRotation.ROTATE_270;
                    textflow.fontSize            = 72;
                    textflow.color               = 0;
                    span.text                    = "abcdefg";
                    controller.setCompositionSize(this.unscaledWidth, this.unscaledHeight);
                    paragraph.addChild(span);
                    textflow.addChild(paragraph);
                    textflow.flowComposer.addController(controller);
                    textflow.flowComposer.updateAllControllers();
                    this.addChild(container);
            ]]>
        </mx:Script>
    </mx:WindowedApplication>
    Warm regards,
    Yuushima

    malachite00 wrote:
    > Thanks David. So is there any way around having to embed
    the font when
    > rotating text?
    Not that I know of. Your problem is that you're loading the
    content
    dynamically, so you have no idea what it will contain.
    There's normally
    no need to embed Japanese fonts for a Japanese audience,
    because they
    already have the main fonts, such as Mincho, Gothic, or Osaka
    on their
    machine. Perhaps you'll just have to give up the idea of
    rotation.
    David Powers
    Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    http://foundationphp.com/

  • From: text overlapping Subject: text in Mail

    I'm having a display issue in Mail app: text in the From: line is offset to the point that it completely overlaps the Subject: line, leaving the From: line empty, and the Subject: line garbled with two lines of text superimposed. It's like the baseline of the From: line is permanently shifted down for some reason. All other text displays correctly.
    This applies to incoming messages and sent messages. The To:, cc:, and From: fields in outgoing messages are not affected while they're being composed. (But they are affected once the message has been sent.)
    I searched around the forums and couldn't find a description of this problem. Has anyone else run into this?

    Thanks, I just tried that, no luck. I had already tried regular power off and reboot. It just goes off randomly, sometimes after just one word or if I am lucky I am able send out a short message before it goes off. It goes off typing in any of the apps.

  • Overlapping images/text

    I got my website to work but there seems to be some inconsistencies with other browsers. When I view my website on Safari and IE at home it looks fine but when I view it on IE at work, some of the images overlap like shown below:
    I simply add the images in the text body of the page and use the tab button to center it. Is this correct? I do not use "object causes wrap" feature on the images.
    Here is a link to the page:
    http://www.fotomoondo.com/Reviews/Entries/2010/3/23Redrock_Eyespy_Standard_and_Micro_Follow_Focus_v2_IndieBundle.html

    Use web-safe fonts, place images outside the text box and make sure none of the text boxes and images are overlapping in iWeb by doing a Command A to show all.

  • Editing Chart Text in WAD

    Hi Guys,
    Chart :
    X-axis  -
      years   --->  2001,2002,2003,2004,2005
    y-Axis: Quantity    -
    > QUAN1,Quan2,quan3,quan4.
    In the graph display i am getting as  2001/ QUAN1,2002/ QUAN2,2003/ QUAN3 ......
    My requirement : is to show as only : 2001 ,2002,2003,2004.
    I searched the SDN found a same requirement except i am using BI 7.0 in following message unfortunately its not answered.Can you please help me with the chart,please.
    WEB CHART :: How to hide "doubled" Category-Text?
    In th query i have years & Quantity in columns.

    Hi Rettna,
    This is to do with a limitation in WAD's export to PDF functionality.
    Plz. refer SAP Note 1069368 which talks of the many limitations with Export to PDF. Some I am citing here:-
    Currently WYSIWYG export is not supported.
    The system exports only Web items. The HTML of the Web application is not exported.
    Related Notes:-
    1107306
    1164631
    The text wrap of Text webitem not working possibly has to do with a program error, but all the same I haven't been able to find a SAP Note listing the same.
    --Priya

  • Changing Chart Text to Vertical on charts?

    I have some long cell names along the bottom of a chart that run over each other. Is there a way to switch the text so it runs vertical like this:
    M
    a
    r
    2
    0
    0
    8
    Instead of like this Mar 2008?

    Hello
    Is it so tiring to open the chart inspector and make some tests by yourself?
    Yvan KOENIG (from FRANCE mercredi 19 mars 2008 20:49:15)

  • Barcode overlapping with text during print.

    Hi,
    I have created a smartform which consists of date and a barcode followed by its corresponding number. The print preview looks perfect. However, in the actual printout, the barcode gets overlapped on the date.
    I have tried putting extra space, adding dummy text variables etc in the template.
    Can anyone suggest a solution?
    Thanks,
    Sherin

    Hi
    Check if the code correction of the followin SAP note resolves this problem:
    1619204 - Smart Forms - position of barcode is wrong
    Regards,
    Aidan

  • Chart text from Excel to illustrator cs6 not copying right

    Hi all
    Im having a bit of a problem with the text from charts made in Excel 2008 (v.12) copy and pasted into Illustrator CS6
    Once pasted into Illustrator it changes all the text pasted into numbers and punctuation marks
    I cant see in the setting anything to change with fill handling etc to stop this happening
    I need to paste these charts into Illustrator from excel to make them into into house styles etc as they are supplied to me and illustrator cant make up the charts I need.
    Any ideas anyone as I dont want to have to retype the text on each chart if I can help it.
    Many thanks
    Paul

    Hi guys, there are several way to approach the font change. The font is picked up from the default "Body Font" on the default "Office Theme" template when creating new documents.
    to change the font to Arial or something else (using Windows), go to File->Options->General and choose your font under "When creating new Workbooks"
    that would make "Arial" the default font when typing your data in new books, but when the chart is made, it will still have "Calibri" in it since we're using the default "Office Theme".
    to change the font, go to "Page Layout" tab and in the "Themes Group", click on "Fonts" and at the bottom click on "Create New Theme Fonts"
    change the Body Font to "Arial", give the Theme font a name and click Ok.
    now all newly created books will show Arial, but the charts will still have the Calibri font since they depend on the "Office Theme" template, but now it will be easier to change the theme fonts to the Arial, by choosing the newly created theme, and the charts will pick up the fonts too.
    it is possible to change the default "Office" theme to something else...but that's another tutorial.

  • OBIEE download to Excel - Overlapping charts

    When I downloaded a report (that consist of charts and pivot table) - to Excel, we encountered a issue the charts will be overlapping each other.
    I would like to know if there's any workaround to fix it.
    Thanks

    sree,
    change the download number in inistanceconfig file and check the updated value is available in EM after restarting the services(OPMN).if not enter the required value in download button w't have you been given in instanceconfig.xml.
    Instanceconfig file path: <biee11g_install>\instances\instance1\config\OracleBIPresentationServicesComponent\coreapplication_obips1\instanceconfig.xml
    change value in:
    <DefaultRowsDisplayedInDownload>64000</DefaultRowsDisplayedInDownload>
    check value after restart the service in em, same values is there or not: Maximum nuber of rows to download.
    Thanks,
    Narasimha

Maybe you are looking for