Chart's XML limitation??

Hi,
I am currently using Anychart 5. I am using a custom xml.
Here's what I do. I have 5 hidden items that all contains the xml for different series. And in the custom xml part I put this :
<data>
&P2_1_XML.
&P2_2_XML.
&P2_3_XML.
&P2_4_XML.
&P2_5_XML.
</data>
Now I don't go over the limit in the APEX builder, but when I run it, the chart is either stuck at the "Initializing" part or I simply get a "Not Found" http error.
Is there some kind of work around? Is this limitation known?
Thank you

Me too, in my SVG pie chart, the last row legend text was truncated. just like:
deal size > 70k - 92.5%
deal size
I actually expected in the second row, deal size <= 70k ...
What happened? and how can I control this, moreover the legend was displayed in the left upper of the region and cost a lot width in my screen. Can I change to display the legend in other place, eg. the bottom of the region or the chart?
Anyone can help us about this?

Similar Messages

  • Apex Charts custom XML integration

    Hi All,
    I found a chart in Anycharts.com and downloaded its XML.I wanted to integrate this chart with apex. But the XML,which i downloaded uses data from a .csv file. How to integrate this XML with apex. I found we can edit the default XML in the chart generated by. But How does XML take the values from the query which we write. There is only #DATA# at the end of the chart generated by apex and no clue on how and in what format this Data comes.
    Please help me out.
    Thanks,
    Ajay

    Ajay -
    Others may be able to explain this process better than I but I'll give it my best.
    The #DATA# tag that you see in the default custom xml for a chart is a substitution string. When your page is rendered, APEX runs the queries associated with your chart and then creates XML based on the chart type of the series. Next, it takes this XML that it generated and puts it in the chart custom XML where that #DATA# tag is located.
    There are other ways to get custom data into your chart. You can create the XML yourself in a page item and then insert the contents of that page item into the custom XML of the chart. This can be an advanced topic, but it really isn't too bad once you get the hang of it. The following link contains some pretty good examples of the things you can do. It even shows you how to format your SQL to obtain similar results. Custom XML generation is in the MISC tab. http://apex.oracle.com/pls/apex/f?p=36648:1:2979429292819853::NO I am not responsible for putting this page together, another forum member is, and perhaps they will chime in.
    Hope this helps
    Austin

  • Building charts from xml

    I'm trying to build a series of charts from xml (sample below). Examples might be a column chart of all scores, or a column chart of all 'fred' values. All the examples I've seen are ArrayCollections, or if they are XML, they are very simple xml. I've tried converting the xml to an ArrayCollection (didn't work) and I've tried using the xml as the datasource. I could loop through and build a simple xml for each chart but there must be an easier way. Any suggestions.
    <results>
                    <item name="group1" speed="100" score="23" time="123">
                        <detail>
                            <element name='fred'>2</element>
                            <element name='john'>3</element>
                        </detail>
                    </item>
                    <item name="group2" speed="10" score="3" time="1">
                         <detail>
                             <element name='fred'>12</element>
                             <element name='john'>31</element>
                         </detail>
                     </item>
                    <item name="group3" speed="230" score="53" time="78">
                         <detail>
                             <element name='fred'>42</element>
                             <element name='john'>81</element>
                         </detail>
                     </item>
    </results> 

    Charting framework access the fields like this item[yField] so any of the y field values that you have given does not work i.e. item["item.detail[0]"] etc. do not work.
    For this purpose we created a property called dataFunction on Series, CategoryAxis classes through which you can provide appropriate value for your fields.
    From the livedocs - http://livedocs.adobe.com/flex/3/langref/mx/charts/chartClasses/Series.html#dataFunction
    You typically use the dataFunction property to access fields in a data provider that are not scalar values, but are instead nested in the data provider. For example, the following data requires a data function to access the fields for a chart's data provider:
          , open:25.19}
    The following example returns a value from this data provider:
         public function myDataFunction(series:Series, item:Object, fieldName:String):Object {
              if(fieldName == 'yValue')
                  return(item.close.High);
              else if(fieldName == "xValue")
                  return(item.month);
              else
                  return null;
    Thanks
    -Sunil

  • Pie Chart with XML

    Hi,
    I want to display a normal / simple pie chart. Data will come from SAP NetWeaver Gateway Service. My problem is I created the view via XML and up to nw  I can not find any example to define a pie chart via XML. UI5 demo Apps already checked.
    Many thanks
    Best regards.
    Dominik

    Hi,
    thanks for the quick reply. But I not able to display the date from Net Weaver Gateway.
    <content>
         <ma:Chart id="visualisationPie" height="100%" width="100%" type="Pie" rows="{/visualizePOSet}" showRangeSelector="false"
         showTableView="false" showTotalValue="false" title='Test'>
    <ma:rows>
      <ma:Row>
    <ma:cells>
      <ma:Column name="Type" value="{type}" />
      <ma:Column name="Count" value="{count}" />
      </ma:cells>
      </ma:Row>
      </ma:rows>
      <ma:columns>
    <ma:Column name="Type" value="{type}" />
      <ma:Column name="Count" value="{count}" />
      </ma:columns>
      <ma:category>
      <ma:Category column="Type" displayName="Type of PO" />
      </ma:category>
      <ma:values>
      <ma:Value expression="Count" displayName="Count" />
      </ma:values>
      </ma:Chart>
    </content>
    That is the result.
    Here you can see an example form REST Client in Google chrome. That is the result when I call the GET methode.
    Regarding to the topic with viz Chart. I changed the libary because  I was not able to add title and the the prercent values for piece of the chart.
    Best regards
    Dominik

  • Can we create Pie Charts in XML Publisher

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

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

  • Setting valueAxis for makit chart in XML view

    Dear Experts,
    I am trying to set a valueAxis limit on value 0,5.
    My XML looks like this. I couldnt add valueAxis in ma:Chart successfully.
    <ma:Chart id="idChart" height="100%" width="100%" type="Line"
      rows="{/entries}" showRangeSelector="true" showTableView="false"
      showTotalValue="false">
      <ma:category>
      <ma:Category column="date" displayName="Date" />
      </ma:category>
      <ma:values>
      <ma:Value expression="value" displayName="Value" type="number"/>
      </ma:values>
      <ma:rows>
      <ma:Row>
      <ma:cells>
      <ma:Column name="date" value="{date}" />
      <ma:Column name="value" value="{value}"
      type="number" />
      </ma:cells>
      </ma:Row>
      </ma:rows>
      <ma:columns>
      <ma:Column name="date" value="{date}" />
      <ma:Column name="value" value="{value}" type="number"  />
      </ma:columns>
      </ma:Chart>
    The error was: Uncaught Error: valueAxis property must be of type sap.makit.ValueAxis
    Basically I cant create a new instance of ValueAxis in XML.
    I tried in the controller js something like this:
    var oChart = this.getView().byId("idChart");
    oChart.valueAxis =  new sap.makit.ValueAxis({min : "0.5"});
    This also didnt work.
    So I  have two questions:
    1.) How can I set valueAxis in XML view staticly?
    2.) How can I set valueAxis in controller dynamicly according to the values I get from my json service.
    Thanks for any help!
    Regards,
    Koray

    Try doing,
    oChart.setValueAxis(new sap.makit.ValueAxis({min : "0.5"}));

  • Stacked column chart from XML data source

    I have an XML file, which lists elements with three
    attributes: date, inactive-interval, user-count.
    I need to build a stacked column chart with a single column
    for each distinct date, one stack for each distinct
    inactive-interval for that date, and the height of the stack equal
    to the user-count.
    I can define ColumnSeries with yField="user-count"
    xField="date", but I don't know how to partition the column into
    stacks by inactive-interval values.
    Here is a sample data set:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <data>
    <snapshot date="01/01/2007" inactive-interval="0"
    user-count="3"/>
    <snapshot date="01/01/2007" inactive-interval="7"
    user-count="2"/>
    <snapshot date="01/01/2007" inactive-interval="30"
    user-count="4"/>
    <snapshot date="01/02/2007" inactive-interval="0"
    user-count="4"/>
    <snapshot date="01/02/2007" inactive-interval="7"
    user-count="2"/>
    <snapshot date="01/02/2007" inactive-interval="30"
    user-count="3"/>
    </data>

    Your CategoryAxis id="ha_ccm" uses categoryField="period", and this is the label for the your series (i.e. "Quarter 4/2010"). You cannot have multiple categoryFields for the CategoryAxis; it can only use one data field for the labels. You can use data tips and/or label functions to show the individual series' values on the columns.
    Also:
    Your labelField in the ColumnSeries are set to a ColumnSet name instead of a field name in your dataprovider.
    Font must be embedded if you set ColumnChart.showLabelVertically="true".

  • Cluster bar chart throwing XML exception

    Hi,
    I am new to oracle Application express,
    I want to create a cluster bar chart in a page.
    I tried creating chart in region with chart as (SVG) and cluster bar. When I created the 1 series worked fine.
    After I created the page I edited the chart attributes to add one more series.
    After adding the second series I could not view and
    I get below error in firefox
    XML Parsing Error: no element found
    Location: http://192.168.1.137:8080/apex/f?p=102:20:4029915349100479:FLOW_SVG_CHART_R1580023116146280_en-us
    Line Number 1, Column 1:
    and nothing in internet explorer.
    Have I missed out something?
    Please help.
    Thanks,
    Marutha

    HI,
    Thanks for your inputs
    Below is my query
    Series 1      
    select NULL LINK, MIS_HOUR,Dialed from OBD_HOURLY_MIS where campaign_id=:P17_campaign_Id and mis_date=TO_CHAR(sysdate, 'DD-Mon-YYYY') order by MIS_HOUR     
    -      9     6999
    -      10     6944
    -      11     6862
    -      12     6428
    -      13     6630
    -      14     6671
    series 2      select NULL LINK,MIS_HOUR,Answered from OBD_HOURLY_MIS where campaign_id=:P17_campaign_Id and mis_date=TO_CHAR(sysdate, 'DD-Mon-YYYY') order by MIS_HOUR
    - 9     4751
    -      10     4658
    -      11     4682
    -      12     4511
    -      13     4513
    -      14     4584
    Please help me.
    Thanks,
    Marutha

  • How to embedd Fusion Charts with XML files in java? Please help me.......

    Hi....iam trying to display Fusion Charts. Iam using Hibernate to bring data from database.
    what i want to do is to put data on xml, once my xml gets dynamic data from database, then it will be clubbed with swf files(fusion charts) to show graphs such as line charts,etc.
    I know wat to do. But big Question is how to do ?
    am i right in my Logic ?

    Hi
    Your approach seems to be right.
    Get the data using hibernate into your struts action ( if you are using struts ).
    Set the xml and any other property as request attribute.
    Embed the chart in JSP, by including FusionChartsRenderer.jsp ( found in download package ) and passing xml ( got from request attribute ) and other values as parameters to it.
    Please check the FusionCharts forum for some discussions on Struts, JSP implementation. ( /forum - you could use the search feature available there )
    Please refer to the documentation of FusionCharts as well. ( /docs )
    Hope this helps!
    Srividya

  • 12.1:  SPC Chart - Calculate Control Limits logic/rules?

    Hi,
    I'm using 12.1 SP4 Patch 4 currently.
    1.  For SPC charts, there is a checkbox for Calculate Control Limits under the Control Limits for the Upper Chart Tab.  What rules/formula does MII use for calculating the control limits?  (I tried it and it looked correct but users want to verify how it calculates). See link for example:  http://gunston.gmu.edu/708/XmR.asp?E=0
    2.  What does it do if Limits already exist for the input data set?  Ignore the calculation?
    3.  Can this be set dynamically and refresh the SPC chart?   (Set the Calculate Control Limits
    UpperCalculateControlLimits Boolean property and refresh the chart?  I've sometimes had issues setting these dynamic properties and having them take effect in charts so want to verify)
    Thanks,
    Kerby

    1.  I think you would already have the SPC help PDF document that has the formulas in it - Rob or Leey?  In general, 3 sigma or standard deviation above and below the centerline(mean) based entirely upon the dataset returned by the underlying query template.
    2.  The Auto-Calc will take precedence over static limits, and the chart will use them accordingly.  I'm not entirely sure, but if you look at the Summary Statistics popup from the applet you'll see EFFECTIVE and EST properties that will vary based upon the Auto Calc being enabled.
    3.  Yes, you should be able to 'check' the box through JavaScript and have the chart update with them.  If you have issues with specific script then go ahead and post that snippet as a separate thread.
    Regards,
    Jeremy

  • JasperReport with chart in xml?

    Hi,
    I am using jasperreports 1.0 to create reports in my application. Some reports has charts.
    I'd like the legend stay of the right side of the chart instead in botton area.
    How can I determine the legend position in my xml file?
    I am not using java code to make the chart, I am using the xml file only.
    I am using the following tags in my xml:
    <pie3DChart> 
    <chart evaluationTime="Group" evaluationGroup="City"> 
    <reportElement x="0" y="40" width="500" height="200"/> 
    </chart>
    <pieDataset> 
    <dataset incrementType="None" incrementGroup="" resetType="Group" resetGroup="City"/> 
    <keyExpression>$F{address}</keyExpression> <valueExpression>$F{nrpeople}</valueExpression> 
    <labelExpression> </labelExpression>
    </pieDataset> 
    <pie3DPlot> 
    <plot/>
    </pie3DPlot> 
    </pie3DChart>
    Please, someone can help me?
    Thanks by help

    Hi all,
    I don't resolve this question yet.
    Please, someone can help me?
    Thanks in advance
    Hacinn

  • Chart, custom xml max lenth issue

    Hi all.
    I have a flash chart where i am using custom xml.
    The problem i am facing is when i am reaching the limit of data which can be entered into the custom xml text area.
    Is there any way around this?
    Is it possible to include an external xml file for use with the chart?
    Cheers.

    Hi,
    I created a simple workaround but still it can't be the best way to avoid this error.
    Watch this forum thread: AnyChart gantt with custom xml and more then 32k
    Tobias

  • Graphics chart scaling XML

    Hello,
    We are using BSP to display charts with percentages on them. We want to always display 0 - 100 on the value access but the scaling adjusts itself to the values of the bars. The XML for the chart design is developed in the Chart Designer and graphics:chart is used in the view definition. Since we are using percentages on the bars the scaling is from 0 to 1.0 rather than 0 to 100.
    Any assistance would be appreciated.
    Thanks,
    Rick

    Rick,
    Please check the properties of Minimum Data Value and Maximum Data Value of xml.
    You can set the minimum and maximum data value for your graph. Based on that range values, scaling will be display on your graph. Also please check the properties of Value Axis->Axis properties
          Minimum Value  0
          Maximum Value  100
    Thanks!
    Lakshmikandh

  • Chart label length limitation?

    Is there a limitation on the length of x- or y-axis label for a SVG chart? The chart on my page has x-axis
    label truncated to 15 characters long.

    Me too, in my SVG pie chart, the last row legend text was truncated. just like:
    deal size > 70k - 92.5%
    deal size
    I actually expected in the second row, deal size <= 70k ...
    What happened? and how can I control this, moreover the legend was displayed in the left upper of the region and cost a lot width in my screen. Can I change to display the legend in other place, eg. the bottom of the region or the chart?
    Anyone can help us about this?

  • Chart from xml

    Gi,
    i have see the if i take a pie chart and a bar chart the way
    to create "the content of graph"(the column or a part of pie) is
    different if i use bar chart or pie chart.
    I am asking for if it's possible having an xml built
    automatically the graph.
    tank you
    marco

    Gi,
    i have see the if i take a pie chart and a bar chart the way
    to create "the content of graph"(the column or a part of pie) is
    different if i use bar chart or pie chart.
    I am asking for if it's possible having an xml built
    automatically the graph.
    tank you
    marco

Maybe you are looking for

  • Remote Desktop Connection/RDC display is too small on my MacBook screen

    I use the free download from MS, RDC version 1.0.3 on my MacBook - to connect remotely to a PC network at my job from home. When I connect remotely the RDC display is very small on my MB screen. Is there anyway to enlarge the display or am I locked i

  • Weblogic server with  Websphere Portal server

    Hi, I am having this peculiar problem. I am using Websphere Portal Server and accessing an application which is running on Weblogic 6.1. I am also using struts on both the portal server and weblogic server. The first time I access a jsp which is on w

  • Error "Approval workflow fragment has no user assignment"

    Hi all, We are implementing the workflow for  n level approval of SC WS14000133.Now when we try to add adhoc approvers by clicking on the ADD APPROVER button,we get the foll error: "Approval workflow fragment has no user assignment". I have already r

  • A list of known working headsets?

    Has anyone encountered a list of known working headsets that will pair with the iPhone? If so can you post the link in this thread? I can not get the iPhone to pair with my Oakley Razrwire and I am hunting for a new alternative.

  • Imported image looks grainy

    I imported a Word file that contains an embedded image. The image looks really grainy inside the RoboHelp topic after import. It's recognizable as the same image, and sort of readable, but it looks bad. Is there a way to make it look better by import