Pie Chart Callouts Remain After Updating DataProvider

I have a Pie Chart with an Array Collection as the
dataProvider. When I update the dataProvider, however, the Pie
Chart callouts are not always displayed correctly. I basically have
a form where a user can enter percentages of catregories, and the
percentages are displayed in a pie chart right next to the form.
When I update a value from zero to some positive number, the
category is displayed in the pie chart correctly. But, when I
update that value back to zero, the callout labels get funkified.
For instance, sometimes one label is displayed twice, or if there
is only one category filling the pie chart (100%), the previous
callout labels are still displayed. I debugged and found that the
underlying ArrayCollection values are correct, but it seems the
series is not reflecting the values in the Collection. Any ideas
how I can fix this?
Thanks.

Sure! Here you go. Simply edit any of the "value" values to
be zero, and you will see what I'm talking about. Do it multiple
times and it gets worse and worse. I'm using SDK 3.2.
I'm starting to think this is a bug.

Similar Messages

  • Ipad2 app store update notes remain after update complete

    After updating apps, the app icon and and related notes which appeared when update is released are not removed from update page after the update has been completed. It remains and the "update" button changes to "open" as expected. But update info will not go away.

    That's how it is now. Presumably it's meant to be transparency for those that have auto app updates enabled, to allow them to see what their iPad did 'behind their backs' so to speak. But it means that everyone gets the list, whether they have auto updates on or not.
    Those updates will drop off after about 3 weeks or so.

  • Update notification remains after update installed.  How to I get rid of the notification?

    I installed the iPhoto update 9.4.1 but the update notification remains.  I've checked iPhoto and it is definitely showing that 9.4.1 is installed.
    How do I get rid of the unwanted notification?
    iMac, Mac OS X (10.6.5)

    Try deleting the cache, cookies, and preference files associated wtih the App Store then restart your Mac.
    Quit the App Store if it's open.
    Now open the Finder. From the Finder menu bar click Go > Go to Folder
    Type or copy/paste:    ~/LIbrary/Caches/com.apple.appstore
    Click Go then move the Cache.db file from the com.apple.appstore folder to the Trash.
    Type or copy/paste:    ~/Library/Cookies
    Click Go then move the com.apple.appstore.plist file from the Cookies folder to the Trash.
    Type or copy/paste:    ~/Library/Preferences
    Click Go then move the com.apple.appstore.plist file from the Preferences folder to the Trash.
    See if that made a difference ...

  • Stocks - Error retrieving chart more often after update

    Is anybody else finding the Stocks app less reliable after the update?
    I sure wish there was a way to configure different sources.

    Doubt you will find one. They are working fine with other tools that check (eg: Yahoo Widgets). Odds are they are using a WebService and odds are have a specific one for Apple iPhones to use (embedded in the SOAP message with apple info to let them know it comes form iPhone).
    With that said, odds are it is protected that only an iPhone can make that specific request, and it is in that WebService that Yahoo may be having the problem.
    At least being a developer, that is what I would assume they are doing (webservice).

  • Overlay a graphic on a Pie Chart, & Rotate text in a Pie Chart

    Is it possible to overlay a graphic on a pie chart?
    I've tried manipulating the Wrap Inspector, but regardless, when I paste a graphic on topic it drops below the pie chart and deletes one segment of the pie.
    In a related pie chart question, is it possible to rotate the text to face into the central axis, think spokes in wheel (vs. the default horizontal). I can rotate the pie chart in about 3 dif. inspectors, but no luck here...and my texts is just a little too long to fit nicely in the default (and too hard to read if I reduce the font size).
    Thanks

    I assume you want to have a graphic that sits over the chart, and that you see the values underneath? Something like a shine, worn texture or logo?
    If you are wondering what happened to your particular 'missing slice' open the Graph inspector and select that section. Chances are you have changed the tiled image which was assigned to that particular piece of the pie chart.
    To overlay a graphic, draw a circle shape. In the graphics inspector assign an image fill to that shape. Choose tiled or scale to fit as required (a png. file with transparencies will show the underlying values, as will setting the opacity of the circle)
    Turn the wrap off for the circle (It sounds like your pie chart may be set to 'moves with text' instead of 'locked to page') And then place it overtop of the pie chart. Resize to fit. Since this is now 'locked to page' and above the pie chart, any movement of the pie chart means you will have to reorient your overlay. To avoid this, set the pie chart to Locked to Page as well.
    At this point you can set the wrap for the pie chart so the text moves around it if you like. Your overlay and the pie chart will remain in sync if they are both fixed to page.
    Regarding your text question, no. You can't set that. What you can do is use a numerical, letter or symbolic value and include a legend manually to indicate the true names of the portions using a text box.
    (I've seen someone with a pie chart whose segments were labeled with seven words, the last two of which were the only ones that changed. I suggested using the unchanging portion as the graph title and the changing portion as the individual slices. Not sure if that would apply to your project.)

  • How do I update the colors on a 2d pie chart after adding 3 new variables

    I have added 3 additional items to a 2d pie chart.  Unfortunately, when the data is displayed the recently added items are displayed with the SAME colors as the first 3 items in the chart.  I need all variables to display in distinctly DIFFERENT colors.

    Hi tarheel,
    You can click on the color you want to change and go to the style tab:
    You can do it there. I have also changed colors after clicking the data tab from within edit data references.
    quinn

  • Chart flickering problem when updating members of dataProvider

    Hi all,
    I'm having an issue with a PieChart, where the dataProvider
    i'm using is getting updated under the hood and it's causing the
    labels to drop in and out. Specifically, it looks like in the
    updateDisplayList() method of PieSeries, there's a call to clear
    the "labelLayer". I could have sworn i'd seen an example of an
    updating pie chart that did not have a problem of flickering
    labels, but i can't seem to figure out how to get rid of this
    annoyance.
    Here is a sample application that demonstrates what i'm
    facing. Anyone have any ideas on how to get the labels to stick
    around yet display the updated values?
    Thanks,
    ./paul
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute"
    width="500" height="300" creationComplete="init()">
    <mx:Script>
    <![CDATA[
    import mx.events.CollectionEventKind;
    import mx.events.CollectionEvent;
    import flash.utils.getTimer;
    import mx.events.PropertyChangeEvent;
    import mx.formatters.NumberFormatter;
    import mx.collections.ArrayCollection;
    private var timer:Timer = new Timer(3000,1);
    private var fireUpdate:Boolean = true;
    private var ac:ArrayCollection = new ArrayCollection(
    [ { "name":"record A", "mydata": 30 },
    { "name":"record B", "mydata": 60 },
    { "name":"record C", "mydata": 70 },
    { "name":"record D", "mydata": 80 },
    { "name":"record E", "mydata": 40 },
    { "name":"record F", "mydata": 90 } ]);
    private var percentFormat:NumberFormatter = new
    NumberFormatter();
    private function init():void
    timer.addEventListener( TimerEvent.TIMER, onTimerEvent );
    percentFormat.precision = 0;
    mychart.dataProvider = ac;
    grid.dataProvider = ac;
    pieSeries.field = "mydata";
    timer.start();
    private function onTimerEvent( evt:TimerEvent ):void
    for each( var r:Object in ac )
    r.mydata = int(((Math.random() * 0.1) + 0.95) *
    Number(r.mydata)); // plus or minus 5%
    trace( getTimer() + ": " + r.name + " -> " + r.mydata );
    if( fireUpdate )
    var cevt:CollectionEvent = new CollectionEvent(
    CollectionEvent.COLLECTION_CHANGE );
    cevt.kind = CollectionEventKind.UPDATE;
    ac.dispatchEvent( cevt );
    statusLabel.text = "Last Updated: " + getTimer();
    timer.reset();
    timer.start();
    public function labelFunc(data:Object, field:String,
    index:Number, percentValue:Number):String
    return data.name + " (" + percentFormat.format(percentValue)
    + "%)";
    private function toggleUpdateEvent():void
    fireUpdate = !fireUpdate;
    if( fireUpdate ) evtToggle.label = "Turn Off UpdateEvent";
    else evtToggle.label = "Turn ON UpdateEvent"
    ]]>
    </mx:Script>
    <mx:VBox width="100%" height="100%" >
    <mx:HBox>
    <mx:Button id="evtToggle" label="Turn Off UpdateEvent"
    click="toggleUpdateEvent()" />
    <mx:Label id="statusLabel" />
    </mx:HBox>
    <mx:HBox width="100%" height="100%">
    <mx:PieChart id="mychart" width="50%" height="100%">
    <mx:series>
    <mx:PieSeries id="pieSeries" labelFunction="labelFunc"
    labelPosition="insideWithCallout" showDataEffect="eff"/>
    </mx:series>
    <mx:SeriesInterpolate id="eff" duration="1000"/>
    </mx:PieChart>
    <mx:DataGrid id="grid" width="50%" height="100%">
    <mx:columns>
    <mx:DataGridColumn dataField="name" />
    <mx:DataGridColumn dataField="mydata" />
    </mx:columns>
    </mx:DataGrid>
    </mx:HBox>
    </mx:VBox>
    </mx:Application>

    Hi
    Please select the right Operating system and download the graphic driver and then update the Bios from the link given below and check if the issue is resolved.
    Link
    Also easy to find out if this is a Hardware issue once unit is powered on keep tapping F10 key and see if the display is the same if yes you might have to replace the screen.
    Let us know how it goes!
    "I work for HP."
    ****Click the (purple thumbs up icon in the lower right corner of a post) to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    Regards
    Manjunath

  • HT5654 after update to the latest version on my ipad, it no longer connects to the internet nor can i send emails.  when plugged in to sync with itunes, it remains 'stuck' at syncing  step 2 of 7 backing up.  has anyone had similar problems? any solutions

    after update to the latest version on my ipad, it no longer connects to the internet nor can i send emails.  when plugged in to sync with itunes, it remains 'stuck' at syncing  step 2 of 7 backing up.  has anyone had similar problems? any solutions?

    I had this problem.  I held down the power switch to power down completely.  Takes a few seconds.  Then use the power switch to turn on.  Might take a couple goes.
    Kirk

  • To collect small slices into a secondary, callout pie chart in SSRS 2005

    Hi Guys, 
    There exists a property in pie chart in SSRS-2008 which can consolidate the small slices on pie chart. But I am unable to find the same property in SSRS-2005. 
    Is this property only available in SSRS-2008 ? If yes how can we achieve the same functionality in SSRS-2005 Pie Chart ?
    Regards
    Consolidating Small Slices on a Pie Chart
    Consolidating Small Slices on a Pie Chart
    Consolidating Small Slices on a Pie Chart
    Consolidating Small Slices on a Pie Chart
    Consolidating Small Slices on a Pie Chart

    Hello,
    Based on my research, the CollectedStyle property that collect small slices into one signal slice or a secondary, callout pie chart is available from Reporting Services 2008. So it is not supported in Reporting Services 2005.
    For example, you are using the query below to return the SECTION and DIVISION fields as the chart fields: SELECT SECTION , DIVISION FROM TEMP, and you want to collect small slice COUNT(DIVISION) smaller than 5 as the callout pie chart. To work around this
    issue, we can create two charts on the surface, one as the big and collected slices chart, another one as the secondary, callout pie chart. For more details, please refer to the following steps:
    We can use the query with some conditions like below to return the fields for the main chart:
    SELECT CASE
       WHEN COUNT(DIVISION) <= 5 THEN 'Other'
       WHEN COUNT(DIVISION) >5 THEN SECTION
       END  AS SECTION, COUNT(DIVISION) AS DIVISION
     FROM TEMP
    GROUP BY SECTION, DIVISION
    We can use the query like below to return the fields for the callout pie chart:
    SELECT CASE
          WHEN COUNT(DIVISION) <= 5 THEN SECTION
       END  AS SECTION, CASE
          WHEN COUNT(DIVISION) <=5 THEN COUNT( DIVISION)
       END  AS DIVISION
     FROM TEMP
    GROUP BY SECTION, DIVISION
    The following screenshot is for your reference:
    If there are any other questions, please feel free to ask.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Interactive Gantt chart - how to receive updated XML after user changes

    Hello,
    I failed to receive changed XML after user updates.
    I've constructed following example:
    Created context attribute of type XSTRING, binded it to the "dataSource" property of the Gantt chart control.
    I pass following XML to the control:
    <?xml version="1.0" encoding="iso-8859-5" ?>
    <SAPJNetData version="1.0">
    <Application type="GANTT" version="1.0" />
    <TypeRepository version="1.0" href="/SAP/BC/WebDynpro/SAP/ZT_INV_WDR_TEST_GANTT/gantPR02P00086_3_tr.xml" />
    <UserInterface version="1.0" href="/SAP/BC/WebDynpro/SAP/ZT_INV_WDR_TEST_GANTT/gantPR02P00086_3_ui.xml" />
    <Graph type="Gantt.Graph" version="1.0">
    <rows>
      <row id="001" />
      <row id="002" />
      <row id="003" />
      </rows>
    <dates timeZone="GEurope/Berlin" locale="de_DE" format="dd.MM.yyyy" dateEnd="20.01.2010">
      <section date="01.01.2010" unit="DAY" unitSize="20" />
    <calendarItem id="Cal.1stDayInMonth">
      <repetition unit="MONTH" />
      </calendarItem>
    <calendarItem id="Cal.1stDayInWeek">
      <repetition unit="WEEK" />
      </calendarItem>
      </dates>
    <view>
      <viewpos date="01.01.2010" />
      </view>
    <chart id="Dummy">
    <timeScale>
    <section index="0">
      <ribbon type="Gantt.CProjects.Ribbon.Month" />
      <ribbon type="Gantt.CProjects.Ribbon.3Days" />
      </section>
      </timeScale>
      <grid type="Grid.CProjects.Gantt.TimeLine" calendarIDs="Cal.1stDayInWeek" />
    <table type="Gantt.Table" id="CProj-Table">
      <defaults typeCell="L.Table" typeHeader="L.Table" />
      <tree showRootIcons="TRUE" />
    <cols showInitially="4">
      <ids>TREE,ID2,ID3</ids>
      </cols>
    <header>
      <header width="30" />
      <label colid="TREE" width="250">Этап</label>
      <label colid="ID2">Дата с</label>
      <label colid="ID3">Дата по</label>
      </header>
    <rows>
      <ids>001,002,003</ids>
      </rows>
    <row>
      <header>1</header>
      <tree>Top Item</tree>
      <label>01.01.2010</label>
      <label>20.01.2010</label>
      </row>
    <row>
      <header>2</header>
      <tree parentRow="001">Subitem 1</tree>
      <label>01.01.2010</label>
      <label>10.01.2010</label>
      </row>
    <row>
      <header>3</header>
      <tree parentRow="001">Subitem 2</tree>
      <label>11.01.2010</label>
      <label>20.01.2010</label>
      </row>
      </table>
    <graph>
    <view>
      <backColor type="White" />
      </view>
    <node id="001" type="Gantt.CProjects.SummaryNode" rowID="001">
    <dates>
      <date>01.01.2010</date>
      <date>20.01.2010</date>
      </dates>
      </node>
    <node id="002" type="Gantt.CProjects.Node" rowID="002">
    <dates>
      <date>01.01.2010</date>
      <date>10.01.2010</date>
      </dates>
      </node>
    <node id="003" type="Gantt.CProjects.Node" rowID="003">
    <dates>
      <date>11.01.2010</date>
      <date>20.01.2010</date>
      </dates>
      </node>
      </graph>
      </chart>
      </Graph>
      </SAPJNetData>
    Then I run my example application, press standard "Save" button in Gantt chart control.
    After that my XML in context changes, but it's incorrect. There is no <graph> tag at all - this tag should contain all significant parameters of the chart.
    The resulting XML below:
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <SAPJNetData build="9295" date="04-Aug-2010 10:19:13" host="localhost" version="1.1247">
    <Application type="GANTT" version="1.0"/>
    <TypeRepository href="/SAP/BC/WebDynpro/SAP/ZT_INV_WDR_TEST_GANTT/gantPR02P00086_3_tr.xml" version="1.0"/>
    <UserInterface href="/SAP/BC/WebDynpro/SAP/ZT_INV_WDR_TEST_GANTT/gantPR02P00086_3_ui.xml" version="1.0"/>
    <GraphGantt version="1.1247"/>
    </SAPJNetData>
    All the chart in fact has completely disappeared. There is nothing left but file header.
    The question: How to get XML with all user changes back from the Gantt chart control?

    Long time, hah..
    Anyways thanks to behave like a responsible person on SCN and taking care of your threads..
    Liked.

  • After updating ipod touch to ios5 the ipod toch has stopped responding to work, can't even turn it off.it remains sync...when i connect to itunes it says error 0sE8000065. any solution?

    after updating ipod touch to ios 5 the ipod touch has stopped responding to work, can't even  turn it off. it remains sync.... when i connect to itunes it says error 0sE8000065. any solution?

    Try here:
    iPhone, iPad, iPod touch: Unknown error containing '0xE' when connecting
    Also see:
    iOS: Not responding or does not turn oniOS: Not responding or does not turn on

  • After updating iOS 6 in my iPod Touch 4th Gen, my Synced photos from computer are all gone. The remaining pictures are only in the Camera Roll. HELP THANKS :)

    Hello! I updated my itouch 4g with iOS 6 using iTunes at Windows 7. After updating, my musics and videos are still there but my synced photos from the computer are lost. The only remaining photos are from the Camera Roll. I lost 4000 photos. What will I do to restore them? Thanks for thise who will help :)

    You need to obtain the synced photos from where you obtained them the first time. Synced media like apps, music and synced photos are not included in the backup that iTunes makes as the first step of an update or restore.
    iTunes: About iOS backups

  • After finish software updates IOS 7 in my iphone 4s its showing connect to itunes after i connect with itunes its showing 40 hours remaining for update

    after finish software updates IOS 7 in my iphone 4s its showing connect to itunes after i connect with itunes its showing 40 hours remaining for update. But still not finish even after every 30-45 minutes showing error. What i will do please guide me. I'm connecting my device with my acer laptop windows 7 professional.

    firstly thanks for quick reply.
    sorry sir,
    i am confused in last line you wrote,
    " This will erase the phone but you will be given an option at the end to restore to an existing backup, if you have one."
    i did not understand last sentence  -  if i have one? you mean to say if i have data or not in my iphone?
    i have many pictures, messages, contacts which are very much important.
    so will it be all restore and will be backup again in my iphone if i restore?
    i am extremely sorry to interrupt you again.
    waiting for your quick reply
    thanks and regards,
    vishal

  • Pie chart missing after web deployment

    Running on Windows 2000,
    via the Oracle Report Builder, I created a report containing a pie chart.
    I then deployed this report ( .RDF) file along with the .ODG file onto my Unix
    machine (Solaris) where my Report Server resides.
    When I bring up the report in my browser (HTML format), I can see the report
    but not the pie chart - there is only a shadow where the pie chart should belong.
    Any ideas and/or suggestions?

    I am having the same problem, been through everything I can think of - works fine on NT, moved to 2000 (carefully checked the locaton of the files and the specification of the paths in the registry). Also checked the path/file info in the report. NOT working, help...
    here is the error that displays in the window says that it cannot get the job output.

  • After ios 7, apps that has been updated still remain in update list in App Store

    After updating to the ios 7, whenever I update my apps, even after it's been updated it still stays in the updated list in the App Store. This applies both to my iphone 5 and iPad mini. Is there a way to resolve this? Am I the only one facing this issue?

    If this is occurring with apps from multiple vendors, try a reset: Simultaneously hold down the Home and On buttons until the device shuts down. Ignore the off slider if it appears. Once shut down is complete, if it doesn't restart on it own, turn the device back on using the On button. In some cases it also helps to double click the Home button and close all apps BEFORE doing the reset.
    If from a single app, or apps from the same vendor, you may need to reach out to the vendor.
    I'm not having any issues with Magazine apps.

Maybe you are looking for

  • How can I run a Local PC executable file from Enterprise Portal?

    I want to run local PC executable files from inside the portal. To be more specific I want to be able to open the Outlook and some powerbuilder executable applications. How can I do it?

  • Using DI API, getting error when connecting to database:

    The server is 2003. The sqlserver is 2005. We have a button that calles the DIapi function Connect().  He gets the following error: [Microsoft][ODBC SQL Server Driver][SQL Server]Conversion failed when converting the nvarchar value 'N' to data type i

  • How to run a 10g report in batch mode.

    Good Afternoon, Please advise if there is a way to run a 10g report from command line. We use 6i right now and our job scheduler runs reports using "D:\ORADEV6I\BIN\RWRUN60.EXE ..." executable in batch mode on a separate server. We plan to migrate to

  • Store incoming document from RFC

    I'm sure somebody has done this.  I need to call an archivelink fm to attach a document from a browser app to a SAP object, in this case the vendor master.  The func modules work when running in SAP GUI but not from browser app or from a batch proces

  • Premiere Pro CS6 and Audition CS6 not playing any media

    I'm having a problem with both Premiere pro and Audition CS6 not playing back any media when I hit play. The play button shows that it should be playing back but the playhead doesn't move at all. I'm on a late 2011 Macbook Pro running Mountain Lion 1