Pie Chart Exploded On Load

Hello All,
Anyone here knows where to place the exploded="true" so that the chart will be exploded when the page load:
<?xml version = "1.0" encoding="utf-8" standalone = "yes"?>
<anychart>
  <settings>
    <animation enabled="true"/>
    <no_data show_waiting_animation="False">
      <label>
        <text>#NO_DATA_MESSAGE#</text>
        <font family="Verdana" bold="yes" size="10"/>
      </label>
    </no_data>
  </settings>
  <margin left="0" top="0" right="0" bottom="0" />
  <charts>
    <chart plot_type="Pie" name="chart_30009006600473016877" exploded="True">
      <chart_settings>
        <title text_align="Center" position="Top" padding="0" >
          <text>Pies Chart</text>
          <font family="Tahoma" size="14" color="0x000000" />
        </title>
        <chart_background>
          <fill type="Solid" color="0xffffff" opacity="0" />
          <border enabled="false"/>
          <corners type="Square"/>
        </chart_background>
        <data_plot_background>
        </data_plot_background>
        <chart_animation type="Appear" interpolation_type="Quadratic" show_mode="OneByOne"/>
      </chart_settings>
      <data_plot_settings enable_3d_mode="true">
        <pie_series style="Aqua" >
          <tooltip_settings enabled="true">
            <format><![CDATA[{%Name}{enabled:False} - {%Value}{numDecimals:0,decimalSeparator:.,thousandsSeparator:\,}]]></format>
            <font family="Tahoma" size="10" color="0x000000" />
              <position anchor="Float" valign="Top" padding="10" />
          </tooltip_settings>
          <label_settings enabled="true" mode="Outside" multi_line_align="Center">
            <format><![CDATA[{%Name}{enabled:False} - {%Value}{numDecimals:,decimalSeparator:.,thousandsSeparator:\,}]]></format>
            <background enabled="false" />
            <font family="Tahoma" size="10" color="0x000000" />
          </label_settings>
          <pie_style>
          </pie_style>
          <marker_settings enabled="True" >
            <marker type="None" />
          </marker_settings>
          <connector color="Black" opacity="0.4"/>
        </pie_series>
      </data_plot_settings>
#DATA#
    </chart>
  </charts>
</anychart>
Thanks in advance

Hi,
To set the slices of your pie chart to "exploded" upon page load, the setting of 'exploded="True"' would need to be applied to each point of the data component of the chart XML. So you would need to replace the substitution string #DATA# with the customised data containing this new attribute. For example:
<data><series><point name="ADAMS" y="1100" exploded="True"/></series></data>
How you choose to do so is up to you, but I've outlined one possible option on my sample application, https://apex.oracle.com/pls/apex/f?p=36648:117, which uses PL/SQL to generate the data XML with the new attribute. As you'll see in the AnyChart online User's Guide, specifically in section Pie and Donut Chart, they've referred to a series level attribute <series exploded="True" />,but this option currently doesn't appear to be working.  I've contacted AnyChart regarding this behaviour, and will hopefully receive clarification on whether or not the documented series level attribute works.  In the meantime, applying the attribute to each point of the data series will provide the behaviour you're looking for.
I hope this helps.
Regards,
Hilary

Similar Messages

  • Pie chart explode by grouping.

    Hi,
         Again i come here with pie-chart problem. I want to explode wedges by grouping.
         For example if i give 5 values.
         1.ClassA - Boys => 15
         2.ClassB - Boys => 20
         3.ClassC - Boys => 3
         4.ClassA - Girls => 14
         5.ClassB - Girls => 20
         Pie chart need to show it as 5 pieces. But i need to separate Boys and Girls and need to show them as 2 parts.
         When i give perWedgeExplodeRadius to certain piece, that is totally explode from the chart. Insteat of that i need to explode 1 corner.

    Hi all,
         i am still struggle in this. Any ides?

  • How did Steve group exploded wedges in pie chart

    In his MacWorld keynote today, Steve showed a pie chart with 3 wedges exploded together (9:36 in, the US SmartPhone Marketshare slide). The Apple wedge is exploded, but so are the Palm, Motorola and Nokia wedges, yet they are exploded together, with no space between them. Is this possible in Keynote '08 or is Steve using unreleased features? I've tried selected all three and changing the explode value, but they separate.

    I'll post the .key file used to create that image.
    http://idisk.mac.com/makentosh-Public/multixplode.zip
    The main things to consider is:
    a) Don't move the wedges you want "connected"
    b) You'll need one "Preview Passthru" for each separately exploded bit
    So, you begin by setting up your chart with all the appropriate elements. Then, pull away the ones you DON'T want stuck together. Preview Passthru them (Copy, Open Preview, Command-N, Copy, Paste back into Keynote OR Preview Passthru for short), then use the "Draw a Shape" to click out a shape that surrounds the ones that are stuck together. Select the shape and the image and "Mask with Selected Shape". If you've only got two separated groups, move all the others back to the center, move the "attached" ones away and Preview Passthru that group, then mask it.
    You'll see how I masked all three parts in the linked Keynote file.

  • How can I evenly space wedges from an exploded pie chart?

    I'm creating a pie chart widge exploded wedges in Illustrator CS3 but I'm having trouble keeping all the wedges aligned evenly. Does anyone have any tips on doing this? My eyeing attempt is terrible.

    I think the best way is by eye and if you are trying to make one seem as if it is especially called out then you want that one not to be evenly spaced like the others.
    Like such
    If you want them all to be equally emphasized then you will do better by eye like such
    And if you want more space then it will look a bit less consistent but no more so than any other approach and making the colors lighter is not going to resolve any geometric issues.

  • I just want to make a pie chart

    I've been assigned to make a pie chart in class (with each section a different color), and I've loaded the javax.swing.JApplet and java.awt.*
    I've only gotten as far as drawing the circle. I know how to create lines, but I can't figure out what I'm supposed to do to fill in the sections of the pie chart with different colors.
    Could anyone help me with this simple project? Like what method I should look at?

    Have you looked at the link?
    public abstract void fillArc(int x,
                                 int y,
                                 int width,
                                 int height,
                                 int startAngle,
                                 int arcAngle)So, let us guess at how to draw a circle, and 300 x 400, Mmm the x would be 300, and the y 400. It wants to have a radius of 100px, so thats the width & hieght sorted. Do you want it to be a complete circle? If so that is from 0-360 degrees . So that is the start & end angle.
    Actually, do you know draw to the screen?
    http://java.sun.com/docs/books/tutorial/2d/index.html

  • MapViewer Html5 API. Error with Variable Pie Chart Style Model

    Hello,
    I have a serious problem related to Variable Pie Chart Style. MapViewer - Mapbuilder version: 11.1.1.7.3.
    [ALERT]  MAPVIEWER_9023:Cannot load style.
        Source: OM.style.StyleStore.parseXMLStyle
    OMS: oracle.mapviewer.share.stylex.VariablePieChartStyleModel cannot be cast to oracle.mapviewer.share.stylex.BucketStyleModel
    In Mapbuilder, I have a geometry theme with rendering style, an advanced variable pie with variable range, style. This is the XML of advanced style:
    <?xml version="1.0" ?>
    <AdvancedStyle>
        <VariablePieChartStyle startradius="5" increment="4">
               <PieSlice name="T004_2009" color="#0033FF"/>
               <PieSlice name="T004_2010" color="#FF0033"/>
               <PieSlice name="T004_2011" color="#33FF00"/>
            <Buckets>
                <RangedBucket seq="0" label="0 - 20%" low="0" high="100000"/>
                <RangedBucket seq="1" label="20 - 40%" low="100001" high="370000"/>
                <RangedBucket seq="2" label="40 - 60%" low="370001" high="1000000"/>
                <RangedBucket seq="3" label="60 - 80%" low="1000001" high="2500000"/>
                <RangedBucket seq="4" label="80 - 100%" low="2500001" high="2.0E7"/>
        </Buckets>
       </VariablePieChartStyle>
    </AdvancedStyle>
    and this is the XML of the theme:
    <?xml version="1.0" standalone="yes"?>
    <styling_rules key_column="ID" caching="NONE">
        <hidden_info>
            <field column="INSTITUTION1" name="Port Name"/>
            <field column="T004_2009_CHAR" name="2009"/>
            <field column="T004_2010_CHAR" name="2010"/>
            <field column="T004_2011_CHAR" name="2011"/>
            <field column="T004_2012_CHAR" name="2012"/>
            <field column="T004_2013_CHAR" name="2013"/>
            <field column="T004_2014_CHAR" name="2014"/>
      </hidden_info>
        <rule column="PASSENGERS_2009,PASSENGERS_2010,PASSENGERS_2011">
            <features style="V.T004_PASSENGERS_VPIE"> (NVL(PASSENGERS_2009, 0) !=0 AND NVL(PASSENGERS_2010,0) != 0 AND NVL(PASSENGERS_2011, 0) != 0) </features>
            <label column="INSTITUTION1" style="T.CITY_NAME_H"> 1 </label>
      </rule>
    </styling_rules>
    When I preview the theme in mapbuilder everything seems fine.
    The problem arises, when I try to add a layer with this theme and style in my map in my APEX (version:4.2.6) application.
    This is the javascript:
    layer = new OM.layer.VectorLayer("layer1",
                def:{
                    type:OM.layer.VectorLayer.TYPE_PREDEFINED,
                    dataSource:ds, theme:themename,
                    url: baseURL
            map.addLayer(layer) ;
    and this is the error I get:
    [ALERT]  MAPVIEWER_9023:Cannot load style.
        Source: OM.style.StyleStore.parseXMLStyle
    OMS: oracle.mapviewer.share.stylex.VariablePieChartStyleModel cannot be cast to oracle.mapviewer.share.stylex.BucketStyleModel
    I' d appreciate any help.
    Thanks in advance,
    Vasso

    Hi,
    You're setting XML data in a JSON model, that's why the binding is incorrect.
    Depending on what your MII transaction is returning, you need to either retrieve the JSON part in the XML, or use a XML Model.
    Regards,
    Tanguy

  • Pie Chart PCXML

    Hi-
    I have modified pcxml line for:
    <DataLabels Font='Size:9;Style:Bold;' TransparentBackground='False' BGColor='#FFFFFFcd' Position='OutsideWithLeaderOnSides' ShowSeriesTextType='NameBelowValueOnGraph'  BorderType='None' />(Note that I've modified the 'Position' property value)
    in directories:
    OracleBI\web\app\res\s_oracle10\popbin and OracleBI\oc4j_bi\j2ee\home\applications\analytics\analytics\res\s_oracle10\popbin
    Then restarted the services (even the machine)
    But the display is coming out in a weird way; If I put the pie chart in the dashboard, after the loading clock comes out and disappear, the pie will not showing any modifications at all. But If I then clicked on the 'Dashboard' link (the loading clock won't come out since I have cached the result) the pie will showing the expected result (the data label will use the OutsideWithLeaderOnSides property).
    Does anyone has experienced this before? Is this a known issue?
    (Environment: Win XP)
    Regards,
    Will

    Hi John,
    Yes, the 'OutWithLeaderOnSides' is one of the property-value too, it displays the same with 'OutsideWithLeaderOnSides'. But the problem still exists.
    Thanks,
    Will
    Edited by: William Lesmana on Mar 4, 2010 10:24 AM

  • How to convert Abap output/excel output into pie charts

    Hi.......
    I've managed to output my Hierarchial sequential report output into a excel file....converting the abap output to xml and then mailing it.....now how can i convert this to pie chart......and mail it.....is it possible to have a pie chart in sheet1 and excel output in other sheet2 in the same excel sheet.......i've looked on the demo programs....in the package SOFFICEINTEGRATION and programs like SAPRDEMOEXCELINTEGRATION2.This are in object oriented language..............can any one come with coding in abap languge with step by step procedure to write the logic....i even got to look into FM called XXL_FULL_API.......
    Points wud be surely rewarded.............Thank in Advance

    Hi Younus Khan,
    sample code to load output to excel sheet.
    Use function module GUI_UPLOAD
    The FILETYPE refer to the type of file format you need: For e.g 'WK1' - Excel format , 'ASC' - Text Format etc.
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    FILENAME = 'C:\test.csv'
    FILETYPE = 'ASC'
    TABLES
    DATA_TAB = itab
    EXCEPTIONS
    FILE_OPEN_ERROR = 1
    FILE_READ_ERROR = 2
    NO_BATCH = 3
    GUI_REFUSE_FILETRANSFER = 4
    INVALID_TYPE = 5
    NO_AUTHORITY = 6
    UNKNOWN_ERROR = 7
    BAD_DATA_FORMAT = 8
    HEADER_NOT_ALLOWED = 9
    SEPARATOR_NOT_ALLOWED = 10
    HEADER_TOO_LONG = 11
    UNKNOWN_DP_ERROR = 12
    ACCESS_DENIED = 13
    DP_OUT_OF_MEMORY = 14
    DISK_FULL = 15
    DP_TIMEOUT = 16
    OTHERS = 17.
    or,
    U can use the FM
    SAP_CONVERT_TO_XLS_FORMAT
    to convert itab data to excel
    check this FM also
    GUI_DOWNLOAD
    And, for converting into xml format. I did it in ecc6.0
    *& Report ZTESTSDN
    REPORT ztestsdn.
    TABLES: vekp,
    likp,
    vbak.
    TYPE-POOLS: ixml.
    DATA: itab LIKE but000 OCCURS 0 WITH HEADER LINE.
    TYPES: BEGIN OF my_xml ,
    data(256) TYPE x,
    END OF my_xml.
    DATA: xml_table TYPE TABLE OF my_xml.
    DATA: l_xml_size TYPE i,
    ld_fullpath TYPE string.
    START-OF-SELECTION.
    SELECT * FROM but000 INTO TABLE itab UP TO 10 ROWS.
    CALL FUNCTION 'SAP_CONVERT_TO_XML_FORMAT'
    EXPORTING
    I_FIELD_SEPERATOR = ','
    I_LINE_HEADER =
    I_FILENAME =
    I_APPL_KEEP = ' '
    I_XML_DOC_NAME =
    IMPORTING
    pe_bin_filesize = l_xml_size
    TABLES
    i_tab_sap_data = itab
    CHANGING
    i_tab_converted_data = xml_table
    EXCEPTIONS
    CONVERSION_FAILED = 1
    OTHERS = 2
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    bin_filesize = l_xml_size
    filename = 'C:\test.txt'
    filetype = 'BIN'
    IMPORTING
    filelength = l_xml_size
    TABLES
    data_tab = xml_table
    FIELDNAMES =
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    You can go use ADOBE AIR for developing the pie chart widget...
    kindly reward if found helpful.
    cheers,
    Hema.

  • Pdf generated through API's does not display pie chart

    I'm using BIP 10.1.3.4, running on Oracle Linux 5 connecting to a 11g database.
    I developed an RTF using the word template builder and included a pie chart. Previewing from within Word works fine, running the report directly from BIP works fine. I then used the API's to generate the pdf programmatically to have more control.
    I use RTFProcessor to convert my RTF into a XSL, DataProcessor to generate the xml data and FOProcessor to generate the final PDF. This works fine running from local JDeveloper, connecting through to the remote database.
    I've now loaded the java class with the API's into the database, and as per http://download.oracle.com/docs/cd/E12844_01/doc/bip.1013/e12188/T421739T517850.htm#T520954, loaded up the following jar's
    xdocore.jar - the core BI Publisher library
    aolj.jar - although this is an Oracle E-Business Suite library, it is required for standalone implementations as well
    i18nAPI_v3.jar - the i18n library used for localization functions
    xdoparser.jar - the scalable XML parser and XSLT 2.0 engine
    xmlparserv2-904.jar - the main XML parser/XSLT engine
    bipres.jar - a charting library
    bicmn.jar - a charting library
    jewt4.jar - a charting support library
    share.jar - a charting support library
    collections.jar - you only need this if you are working with the delivery APIs or bursting engine.
    The report works fine, all data tabels are shown but the pie chart is missing. I originally got the jar files from the TemplateBuilder/jlib directory. I also tried using the jar files from the BIP/xmlpserver\WEB-INF\lib directory as well. Problem remains - everything works fine except for the lack of the pie chart !
    Any help would be greatly appreciated :)
    Cheers,
    Brent

    bump .... anyone had similar problems ?

  • Problem with wedge in Pie chart

    Hi all,
    i'm having a Pie chart which has some four or five sections. By using wedge option i'm able to cut out a single piece from the whole chart. But my requirement is i need to show all pieces individually. Is it possible? Please help me in this.
    Kind regards,
    karthick

    Hi Karthick,
    it is not impossible, but it is not very easy to accomplish this. First of all, the chart engine (Corda PopChart) is bounded by OBIEE. What I mean is that OBIEE doesn't use the full functionality of the chart engine, so when you want to customize the chart, beyond the functionality OBIEE uses, then there is no other option then to edit the PopChart XML files (.pcxml). In ..\OracleBI\web\app\res\s_oracle10\popbin\ and ..\OracleBI\oc4j_bi\j2ee\home\applications\analytics\analytics\res\s_oracle10\popbin you can find pie.pcxml which defines the pie chart.
    About your problem: you want to explode all wedges in your pie chart. According to the Corda documentation you can only explode one wedge, but it is possible to create a pie chart with gaps between all wedges and you can also set the size of the gap. So by setting these parameters I guess you can get what you want.
    Example: You need to add ShowPieGap='True' to this line in the .pcxml.
    <Properties Effect='2D' EffectPercentX='10' EffectPercentY='60' OutlineType='Darker' ShowPieGap='True'/>I also recommend you to read John's experiences with editing PCXML of Corda:
    http://obiee101.blogspot.com/search/label/CORDA
    http://obiee101.blogspot.com/search/label/PCXML
    Regards,
    Stijn

  • Pie Chart -- Separate Slices

    Hello, I have created a Pie Chart. I was wondering if anyone knows of a way to separate the slices. I believe Oracle may have a feature to explode (separate) one slice of the pie chart away from the other slices. However, I was wondering if there is a way to separate each slice from each other.

    Hello,
    To "explode" a pie, just add the following lines in the "Graph Settings" :
    <SeriesItems>
    <Series id="0" pieSliceExplode="100"/>
    <Series id="1" pieSliceExplode="100"/>
    <Series id="2" pieSliceExplode="100"/>
    <Series id="3" pieSliceExplode="100"/>
    <Series id="4" pieSliceExplode="100"/>
    <Series id="5" pieSliceExplode="100"/>
    <Series id="6" pieSliceExplode="100"/>
    <Series id="7" pieSliceExplode="100"/>
    <Series id="8" pieSliceExplode="100"/>
    <Series id="9" pieSliceExplode="100"/>
    <Series id="10" pieSliceExplode="100"/>
    </SeriesItems>
    Regards

  • Xcelsius Present - Pie Chart Does Not Display

    I am evaluating a trial copy of Xcelsius Present and I am having trouble with creating a Pie Chart. I have imported my spreadsheet and have made my data selection, but the pie chart does not display. I have used Crystal Reports in the past and have never run across the problem.  I have tried to create and import a new spreadsheet with the data needed for the pie chart, but I have the same problem with the chart not loading. This problem does not occur with other charts that I am creating.
    Can anyone make a recommendation on what to do?
    Thanks.
    Anita

    I'm having the same problem with the Xcelsius Present 2008 evaluation copy (5.3.0.0).
    No matter how pie chart data is formatted, there is nothing displaying.
    I'd like to know whether this is a known bug or whether this is only in the eval copy. This would prevent me from buying the product.

  • Moving pie chart LABELS

    Greetings for the first time. I'll get right to business:
    Making pie chart. I want to move the data labels completely outside the chart itself b/c the text is not very legible in its default location. I click on the data label and I notice that Numbers recognizes that I've clicked -- not just the label, but the entire pie slice. So, when I move what I hope is just the label, it moves the whole slice ("explode" for just one piece).
    Can I somehow just move the labels?

    Go to Inspector per below. You'll have to have a different text color as noted.
    Regards,

  • Anybody successfully created a Pie-chart?

    I have tried with all the default options and keep getting
    an "x"( the one that's shown by browser when it can't find an image file).
    I understand the fact that Pie-Charts are still in Beta.
    But at least they should work to have a successful look at them.
    Or am I missing some important settings in Apache/Portal/Admin
    that are masking this output?
    These charts are one of the important criteria for us to continue using Portal.
    Thank you verymuch.
    Madhav

    Hi Madhav ,
    I agree with you
    Pie charts is a beta version even in 3.0.9 .It is not possible to create the pie chart(you can create other charts) .If some body has any version more than 3.0.9 ,i don't know .the only way to show up pie charts may be to use seperate table and up load the pie charts and view them ,but not through the regular create components way.
    Thanks
    Vishnu Singireddy

  • Expplode 3d pie chart issue

    Hi All,
    How to import explode 3d pie chart in webi from excel , i hope there is no explode option in webi .plz help me out about this issue
    Thanks in Advance

    Hi,
    Please check the following :
    SAP BusinessObjects BI4.0 - Revolution or Evolution for the Business User?
    regards
    Steph

Maybe you are looking for

  • Creation of accruals for PO during GR

    Hi! We have configured the system to implementshipment costing and the freight costs are posted during goods receipt of the POs. What we have done is 1. Create three condition types for the different freight costs and custom duties, e.g. ZD03, ZD04,

  • Sharing iPhoto with another user on my computer?

    I have iPhoto 9.5.1, and I'd like to know how I can share events, albums or just photos with another user on my computer.

  • Places not updating in iPhoto

    After attempting to import latest photos from my iPhone, Places is not updating in iPhoto it just keeps spinning and the photos are not importing plus I cannot quit iPhoto and shut down my Mac.  Any suggustions?

  • LovCriteria Mapping

    Hello All, I need to add a new LovMapping Criteria to the Lov so that when the user types a key word ,so that i need the Lov to search against the new item. Please let me know. Steps followed 1. Created new item using the VO substitution 2. Added the

  • Permission denied on the RedHat 6.2

    Hi, I have created the Oracle e Dba group. I have installed OAS 4.x e WebDB 2.x for Linux. I have always the error PERMISSION DENIED when I run a command (for example: tnsping, genclntsh, .....) and therefore I can not complete the installation becau