Dynamic SVG Chart Pie query

Hi,
I am trying to build a page that displays an SVG pie chart with the following query:
SELECT '', "&P4_SHOW.", count(*)
FROM "MY_TABLE"
GROUP BY null, "&P4_SHOW."
ORDER BY "&P4_SHOW."
where P4_SHOW is a list of columns of the table 'MY_TABLE'.
However, I get the following error when I try to save the chart definition:
Query cannot be parsed, please check the syntax of your query. (ORA-01741: illegal zero-length identifier)
Thanks for your help.

you're unfortunately not going to be able to build your svg chart off that query in the current build of html db. to explain the issue real quickly, P4_SHOW doesn't have state while you're working in the development environment. because of that, your query's being run as something like...
SELECT '', "", count(*)
FROM "MY_TABLE"
GROUP BY null, ""
ORDER BY ""
...and you'll get that same "illegal zero-length identifier" in sqlplus if you try to run it there. we'll hopefully be able address this issue in a post-production release of the tool, but the best work-around for now would be for you to add multiple svg regions to your page. have one region per column of MY_TABLE and conditionally display the appropriate region based on P4_SHOW.
hope this helps,
raj

Similar Messages

  • Dynamic Query in SVG Chart

    Hi,
    I have SVG Chart, Chart Type: Cluster Bar, Vertical. I have 4 Chart Series. First:
    SELECT null link, X.MESIC
    FROM [email protected]
    WHERE ..........
    I have given dynamic Chart Series Query:
    'SELECT null link, X.MESIC
    FROM '||adm||'.[email protected]
    WHERE .........."
    but Apex write error:
    1 error has occurred
    Failed to parse SQL query
    Please help as in what am i missing?

    You can either use a SQL query or a function returning SQL query as the source of your chart. Just adding some quotes to a query however doesn't make it dynamic nor a function. Try something like this:
    begin
    return 'select null, ename, sal from emp';
    end;
    Edit your existing chart source, and check "Save query without validation", so that APEX doesn't attempt to parse and validate the query when saving.
    Hope this helps,
    Marc

  • Unable to edit wizard created SVG chart query

    Hi,
    I have a problem with an SVG chart that one of the HTML DB wizards created.
    On the generated page the wizard created a selection list item named P30_SHOW.
    This item allows to choose a table column based on which an SVG pie chart is generated.
    The automatically generated chart query is:
    select 'f?p=106:26:&SESSION.:::RP,26:P26_CHART_FILTER,P26_VALUE:'||:P30_SHOW||','||"&P30_SHOW.",
    "&P30_SHOW.", count(*)
    from "TESTTABLE"
    group by 'f?p=106:26:&SESSION.:::RP,26:P26_CHART_FILTER,P26_VALUE:'||:P30_SHOW||','||"&P30_SHOW.",
    "&P30_SHOW."
    The page with selection list and chart worked fine at first.
    But then, when I edited the chart's width on the respective 'SVG Chart Attributes' tab and pressed
    the 'Apply Changes' button I got the following error:
    'Query cannot be parsed, please check the syntax of your query. (ORA-01741: illegal zero-length identifier)'
    I only changed the chart's width, I did not touch the chart's query at all.
    My theory is that HTML DB tries to validate the correctness of the chart's query.
    However, the query references a session variable (P30_SHOW) that is
    not defined in my development session. Consequently, the query is not valid in the
    development context and is refused by HTML DB.
    Now I have two questions:
    1. Is my analysis correct, or are there different reasons for the error I do encounter?
    2. How can I get around the problem? I'd like to use the automatically generated charts,
    but also want to be able to edit them.
    Thanks in advance for helpful comments.
    Regards Holger

    Scott,
    I imported the application using the import/install process. A new application ID was created but was not changed in the chart query. The link was generated by the application wizard. The chart query link is below:
    select 'f?p=103:2:&SESSION.:::RP,2:P2_CHART_FILTER,P2_VALUE:'||:P6_SHOW||','||"&P6_SHOW.", "&P6_SHOW.", count(*)
    from "O_DATA_COLLECTION_POINTS"
    group by 'f?p=103:2:&SESSION.:::RP,2:P2_CHART_FILTER,P2_VALUE:'||:P6_SHOW||','||"&P6_SHOW.", "&P6_SHOW."
    The new application id is 101. It is impossible to modify this query because of message:
    "1 error has occurred
    Query cannot be parsed, please check the syntax of your query. (ORA-01741: illegal zero-length identifier"
    This happens even if nothing is changed in the query but just the apply changes button is pressed.
    I had a similar problem with the breadcrumbs menu. The link was also pointing to the old application id 103 instead of the new application id 101. The way I got round that was to delete the breadcrumb template and create a new one. I then had to go through all the pages that referenced that and reset the breadcrumbs menu template in the region definition.
    Thanks Arjen

  • Dynamically Labeling a pie chart (arc2d_pie)

    Can Somebody guide me how to Dynamically labling a pie chart inside or outside of it.Atpresent I am using rectangle color-code for labling at the top and left side of arch2d but its very confusing as the pie segments grows in number .I am submitting my source code for the pie chart for your reference.You are requested to please guide me with some concrete example as soon as possible .Thanks in advanceimport java.io.*;
    import java.util.*;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.awt.image.*;
    import java.util.Random;
    import java.sql.*;
    import java.math.BigDecimal;
    public class pie2d extends JPanel{
         Connection con;
         Statement stmt;
         Vector vc,conVector;
         int arraincrement,sum,pieMinusAngle,IntegerToInt;
         double sumAngle,allAngleSum;
         public void pie(Graphics g){
              try{
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    String connection_string="jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};Dbq=D:\\bhanu\\bhanu.mdb;DriverID=22";
    con=DriverManager.getConnection(connection_string);
    stmt=con.createStatement();
    catch(Exception er){
         System.out.println("could not connect to database"+er);
    vc=new Vector();
    conVector=new Vector();
    try{
         ResultSet res=stmt.executeQuery("select contractor,count(contractor)as totalcon from daily group by contractor");
    System.out.println("Result set executed");
    while(res.next()){
         String tovector=res.getString("totalcon");
         String contractor=res.getString("contractor");
         conVector.add(contractor);
         int stringToInt=Integer.parseInt(tovector);
         vc.add(stringToInt);
    catch(Exception e){
         System.out.println("Result set error"+e);
              Graphics2D g2d=(Graphics2D)g;
              Random generator = new Random();
              g2d.setFont(new Font("Arial",Font.BOLD,15));
         int vectorsize=vc.size();
         for(int i=0;i<vectorsize;i++){
         Object getInt=vc.elementAt(i);
         Integer objToInt=(Integer)getInt;
         int IntegerToInt=objToInt.intValue();
    sum=sum+IntegerToInt;
         int pieAngle=360;
         for(int i=0;i<vectorsize;i++){
         System.out.println("sum is now :"+sum);     
         Object getInt=vc.elementAt(i);
         Integer objToInt=(Integer)getInt;
          IntegerToInt=objToInt.intValue();
         double DivideAngle=(double)((360/sum)*IntegerToInt);
         allAngleSum=allAngleSum+DivideAngle;
         if(allAngleSum<360){
         double sumCalculate=(360-allAngleSum)/vectorsize;
         for(int i=0;i<vectorsize;i++){
         System.out.println("sum is now :"+sum);     
         Object getInt=vc.elementAt(i);
         Integer objToInt=(Integer)getInt;
          IntegerToInt=objToInt.intValue();
         double DivideAngle=(double)((360/sum)*IntegerToInt)+sumCalculate;
         Object contractorObj=conVector.elementAt(i);
         String contractor=(String)contractorObj;
         int Rnewcolor=generator.nextInt(255);
         int Gnewcolor=generator.nextInt(255);
         int Bnewcolor=generator.nextInt(255);     
         g2d.setPaint(new Color(Rnewcolor,Gnewcolor,Bnewcolor));
         g2d.fill(new Arc2D.Double( 240, 200, 400, 400, sumAngle,DivideAngle, Arc2D.PIE ) );
         sumAngle=sumAngle+DivideAngle;
         String intToString=Integer.toString(IntegerToInt);
         if(i<7){
         g2d.fill(new Rectangle2D.Double(i*70,50,30,30));
         g2d.drawString(intToString,i*73,100);
         g2d.drawString(contractor,i*73,120);//top horizontal
         else{
              g2d.fill(new Rectangle2D.Double(20,i*40,30,30));
         g2d.drawString(intToString,55,i*42);
              g2d.drawString(contractor,75,i*42);
         if(allAngleSum>360){
         double sumCalculate=(allAngleSum-360)/vectorsize;
         for(int i=0;i<vectorsize;i++){
         Object getInt=vc.elementAt(i);
         Integer objToInt=(Integer)getInt;
          IntegerToInt=objToInt.intValue();
         double DivideAngle=(double)((360/sum)*IntegerToInt)-sumCalculate;
         Object contractorObj=conVector.elementAt(i);
         String contractor=(String)contractorObj;
         int Rnewcolor=generator.nextInt(255);
         int Gnewcolor=generator.nextInt(255);
         int Bnewcolor=generator.nextInt(255);     
         g2d.setPaint(new Color(Rnewcolor,Gnewcolor,Bnewcolor));
         g2d.fill(new Arc2D.Double( 240, 200, 400, 400, sumAngle,DivideAngle, Arc2D.PIE ) );
         sumAngle=sumAngle+DivideAngle;
         String intToString=Integer.toString(IntegerToInt);
         if(i<7){
         g2d.fill(new Rectangle2D.Double(i*70,50,30,30));
         g2d.drawString(intToString,i*73,100);
         g2d.drawString(contractor,i*73,120);//top horizontal
         else{
              g2d.fill(new Rectangle2D.Double(20,i*40,30,30));
         g2d.drawString(intToString,55,i*42);
              g2d.drawString(contractor,75,i*42);
         sum=0;
         sumAngle=0;
         allAngleSum=0;
         try{
              stmt.close();
              con.close();
         catch(Exception e){
              System.out.println("Could not close connections"+e);
         public void paintComponent(Graphics g){
              super.paintComponent(g);
              pie(g);
    }

    Can Somebody guide me how to Dynamically labling a pie chart inside or outside of it.Atpresent I am using rectangle color-code for labling at the top and left side of arch2d but its very confusing as the pie segments grows in number .I am submitting my source code for the pie chart for your reference.You are requested to please guide me with some concrete example as soon as possible .Thanks in advanceimport java.io.*;
    import java.util.*;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.awt.image.*;
    import java.util.Random;
    import java.sql.*;
    import java.math.BigDecimal;
    public class pie2d extends JPanel{
         Connection con;
         Statement stmt;
         Vector vc,conVector;
         int arraincrement,sum,pieMinusAngle,IntegerToInt;
         double sumAngle,allAngleSum;
         public void pie(Graphics g){
              try{
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    String connection_string="jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};Dbq=D:\\bhanu\\bhanu.mdb;DriverID=22";
    con=DriverManager.getConnection(connection_string);
    stmt=con.createStatement();
    catch(Exception er){
         System.out.println("could not connect to database"+er);
    vc=new Vector();
    conVector=new Vector();
    try{
         ResultSet res=stmt.executeQuery("select contractor,count(contractor)as totalcon from daily group by contractor");
    System.out.println("Result set executed");
    while(res.next()){
         String tovector=res.getString("totalcon");
         String contractor=res.getString("contractor");
         conVector.add(contractor);
         int stringToInt=Integer.parseInt(tovector);
         vc.add(stringToInt);
    catch(Exception e){
         System.out.println("Result set error"+e);
              Graphics2D g2d=(Graphics2D)g;
              Random generator = new Random();
              g2d.setFont(new Font("Arial",Font.BOLD,15));
         int vectorsize=vc.size();
         for(int i=0;i<vectorsize;i++){
         Object getInt=vc.elementAt(i);
         Integer objToInt=(Integer)getInt;
         int IntegerToInt=objToInt.intValue();
    sum=sum+IntegerToInt;
         int pieAngle=360;
         for(int i=0;i<vectorsize;i++){
         System.out.println("sum is now :"+sum);     
         Object getInt=vc.elementAt(i);
         Integer objToInt=(Integer)getInt;
          IntegerToInt=objToInt.intValue();
         double DivideAngle=(double)((360/sum)*IntegerToInt);
         allAngleSum=allAngleSum+DivideAngle;
         if(allAngleSum<360){
         double sumCalculate=(360-allAngleSum)/vectorsize;
         for(int i=0;i<vectorsize;i++){
         System.out.println("sum is now :"+sum);     
         Object getInt=vc.elementAt(i);
         Integer objToInt=(Integer)getInt;
          IntegerToInt=objToInt.intValue();
         double DivideAngle=(double)((360/sum)*IntegerToInt)+sumCalculate;
         Object contractorObj=conVector.elementAt(i);
         String contractor=(String)contractorObj;
         int Rnewcolor=generator.nextInt(255);
         int Gnewcolor=generator.nextInt(255);
         int Bnewcolor=generator.nextInt(255);     
         g2d.setPaint(new Color(Rnewcolor,Gnewcolor,Bnewcolor));
         g2d.fill(new Arc2D.Double( 240, 200, 400, 400, sumAngle,DivideAngle, Arc2D.PIE ) );
         sumAngle=sumAngle+DivideAngle;
         String intToString=Integer.toString(IntegerToInt);
         if(i<7){
         g2d.fill(new Rectangle2D.Double(i*70,50,30,30));
         g2d.drawString(intToString,i*73,100);
         g2d.drawString(contractor,i*73,120);//top horizontal
         else{
              g2d.fill(new Rectangle2D.Double(20,i*40,30,30));
         g2d.drawString(intToString,55,i*42);
              g2d.drawString(contractor,75,i*42);
         if(allAngleSum>360){
         double sumCalculate=(allAngleSum-360)/vectorsize;
         for(int i=0;i<vectorsize;i++){
         Object getInt=vc.elementAt(i);
         Integer objToInt=(Integer)getInt;
          IntegerToInt=objToInt.intValue();
         double DivideAngle=(double)((360/sum)*IntegerToInt)-sumCalculate;
         Object contractorObj=conVector.elementAt(i);
         String contractor=(String)contractorObj;
         int Rnewcolor=generator.nextInt(255);
         int Gnewcolor=generator.nextInt(255);
         int Bnewcolor=generator.nextInt(255);     
         g2d.setPaint(new Color(Rnewcolor,Gnewcolor,Bnewcolor));
         g2d.fill(new Arc2D.Double( 240, 200, 400, 400, sumAngle,DivideAngle, Arc2D.PIE ) );
         sumAngle=sumAngle+DivideAngle;
         String intToString=Integer.toString(IntegerToInt);
         if(i<7){
         g2d.fill(new Rectangle2D.Double(i*70,50,30,30));
         g2d.drawString(intToString,i*73,100);
         g2d.drawString(contractor,i*73,120);//top horizontal
         else{
              g2d.fill(new Rectangle2D.Double(20,i*40,30,30));
         g2d.drawString(intToString,55,i*42);
              g2d.drawString(contractor,75,i*42);
         sum=0;
         sumAngle=0;
         allAngleSum=0;
         try{
              stmt.close();
              con.close();
         catch(Exception e){
              System.out.println("Could not close connections"+e);
         public void paintComponent(Graphics g){
              super.paintComponent(g);
              pie(g);
    }

  • Dynamic source for svg-chart

    hi...i'm relativly new in htmldb and i have some trouble to get an task, given by my boss, running.
    the problem is, i want to create an sql-query using the values of some different elemnts on my page. to compine these values i use an process and this process filss an textarea (for testing) with an string that is an sql-query. now i want to tell the svg chart to use this string as datasource for the chart.
    ...as i said, i'm new. maybe the problem is trivial but i can't see the solving. so i would be happy to get an answer.

    Hi Sven,
    Can you send the link of the previous topic you are referring to??? or elaborate as how you are building a function to return a query...
    Thanks,
    Swaroop

  • SVG Chart Query 'Length'

    Hi,
    I cause the following error to be raised when trying to save (Apply Changes) the query for an SVG chart:
    ORA-20001: set_attribute error: ORA-01461: can bind a LONG value only for insert into a LONG column
    The query just got 'longer' which prompts the question:
    Is there an upper limit to the length (number of characters) of the query ?
    Thanks for all and any help,
    sinclair

    I cannot answer your direct question, but if your SELECT statement is hard-coded and not generated from PL/SQL, I can offer a possible work around. You could create a database VIEW using your SELECT statement and query the view in your SVG chart.
    Mike

  • SVG Chart - Dynamic Where clause

    Hi,
    I am trying to use SVG Chart to show some data as a line graph. It is working great when the SQL is static. I need to allow user to filter the data using a where clause on a date column. I looked at the sample application and found drill-down chart which is doing the filtering.
    I get a "No data found" when I do a similar thing. The difference being -
    1. I have a date field, where user selects a date & presses Go.
    2. SQL in SVG reads - SELECT null, to_char(repdate,'HH24:MI') rep_date, 100-i Value from t WHERE repdate = :P6_Date order by repdate
    This is on Page 6
    Can somebody please point out what am I doing wrong ?
    Thanks !
    VKS

    Vijay,
    As a test, try to pass a formatted date string into the page in the URL. If the chart renders, my guess would be that when you operate the page the way you described (select date then press Go) the date value isn't stored in session state for the SVG chart region to access. You would need to submit the page to make that happen, then branch back to the page to render the chart region and perhaps make that region display conditionally based on whether the filter value had been set.
    Scott

  • Reg:Creation of chart during query runtime

    Dear all,
    I want to display a Pie-Chart during my query execution
    dynamically. I am working only in query designer not in WAD.
    For example :  I have created a query in query designer based on Zonewise Sales Value. And i have designed the chart also based on these values. But i am facing the problem when i am executing the query i couldnt able to see the Pie-Chart desinged by me.
    Is it possible to save the Pie-Chart as saved view in my query  designer?
    Kindly do the needful. Helpful answers will be rewarded.
    Thanks,
    Harikrishna N

    hai expert's,
    is there any option to save and execute the chart during  query execution. i am asking in query designer?.....
    please through a ligh on it........
    Regards
    Harikrishna N

  • SVG charts and performance

    Hi everybody!
    I am playing a little bit with charts at the moment.
    Therefore I created a query, which takes app. 2 seconds in the SQL Command Processor.
    Then I created a region with a pie chart (SVG chart).
    When I run the page, it takes several minutes until the chart appears (it is unacceptable).
    1.) Does anybody have an idea, why this takes so long?
    2.) Has anybody a better understanding of the SVG charts? How is the chart created, when the query was run? Is it created within the webserver and just displayed in the browser plugin? Or does the webserver just prepare some data and the chart is created within the browser plugin?
    3.) How can I improve the performance of creating SVG charts?
    4.) Are there other possibilities existing for creating charts?
    Thank you for your help in advance and best regards,
    Christian

    Hi Christian,
    There may be lots of issue about the performance of the SVG chart.As far my knowledge goes you must have install Adobe SVG Viewer to the local machine for the browser to initiate HTMLDB Webserver (which is nothing but PL/SQL embedded gateway accessed through MOD_PL/SQL) with the chart viewer plugins.Now if u have so complex query with huge records ,aggregate function and group by that might be a performance issue in case of SVG.
    May be some guys from HTMLDB Team can direct us......
    Cheers,
    ROSY

  • SVG: Chart error: ORA-20001:

    Hi,
    We are using 1.6.1.00.02 . I got a problem with SVG chart. The query returns following error:
    SVG: Chart error: ORA-20001: bar_char_error ORA-20001: get_data_error: ORA-20001 Fetch error: ORA-01782
    The column names are correct. The same query works perfectly in HTMLDB reports.
    Following is the query:
    SELECT
    TRANSACTION_dATE,
    SUM(SALES) SALES,
    SUM(COST_OF_SALE) COST_OF_SALE
    fROM HTML_SALES_REPORT_View
    WHERE transaction_date between
    '01-DEC-2004' and '31-DEC-2004'
    GROUP BY TRANSACTION_DATE
    Help will be appreciated.
    Regards,
    Hamayun

    Hi,
    you have to use the following syntax:
    SELECT link, label, value
    Example
    SELECT
    null link, TRANSACTION_dATE label,
    SUM(SALES) value ,
    fROM HTML_SALES_REPORT_View
    WHERE transaction_date between
    '01-DEC-2004' and '31-DEC-2004'
    GROUP BY TRANSACTION_DATE
    And to display your cost_of_sale data you have to add a second series like this:
    SELECT
    null link, TRANSACTION_dATE label,
    SUM(COST_OF_SALE) value
    fROM HTML_SALES_REPORT_View
    WHERE transaction_date between
    '01-DEC-2004' and '31-DEC-2004'
    GROUP BY TRANSACTION_DATE
    because you can't display two lines with just one query.
    I hope this will help.
    Regards, Jörg

  • SVG CHart error ORA-20001 with Stacked Bar Chart HTML DB 1.6.0.00.87

    Hi,
    during I put a How-To into execution (How To Create a Stacked Bar Chart) I'll get the following error code:
    SVG Chart error:ORA-20001:line_Chart error:ORA-20001:
    get_data error:ORA-20001:Parse error:ORA009
    (see http://www.oracle.com/technology/products/database/htmldb/howtos/index.html)
    This Situation occurs when i add a second series to the
    chart. The first series works fine. I've used the following SQL-Statement:
    select null l, sales_month, revenue from (select to_char(o.order_timestamp,'Mon YYYY') sales_month, sum(oi.quantity * oi.unit_price) revenue, to_date(to_char(o.order_timestamp,'Mon YYYY'),'Mon YYYY') sales_month_order from DEMO_PRODUCT_INFO p, DEMO_ORDER_ITEMS oi, DEMO_ORDERS o where o.order_timestamp <= (trunc(sysdate,'MON')-1)and o.order_timestamp > (trunc(sysdate-365,'MON'))and o.order_id = oi.order_id and oi.product_id = p.product_id and p.category = 'Audio' group by to_char(o.order_timestamp,'Mon YYYY') order by sales_month_order);
    Please help.
    Regards
    Detlev

    Well,
    I've just been struggling for a couple of hours with a cluster bar chart giving the same problem.
    The problem is definitely with "ORDER BY".
    I guess the graphing chart is taking the sql query as a string and then does some other manipulation on it which ends abnormally when you include the order by clause.
    I presume that if you embed the query in a
    SELECT * FROM (<actual query with order by>)
    it might mitigate the problem.
    Bye,
    Flavio

  • SVG Charts - x-axis

    I'm a newbie.
    I've created a 2-series line chart (thanks to someone else's query on this forum, I found out about losing the 'order by' for multiple series!). I only have 2 'X' categories at present ('quarter1' and 'quarter2') but the chart defaults to squeezing them together at the left-hand side, leaving enough room to go up to about quarter 15, but I will only ever want 4.
    Anyone know how the spread the categories across the axis?
    Thanks

    assuming you're talking about the legend when you say, "but the chart defaults to squeezing them together at the left-hand side, leaving enough room to go up to about quarter 15", then know that this is a current limitation. i'll log the enhancement request in a bit (unless we already have that one), but consider unchecking the "Show Legend" box on your SVG Chart Attributes screen and just drawing your own for now. if you were asking about something else, please do feel free to elaborate.
    regards,
    raj

  • SVG Chart Setup

    Hi everybody,
    I have I think a simple question but I don't find the issue.
    I've created a SVG Chart with 3 Series Name Query. I need to see 3 Series based on Month. My month is on 2 digit : 10 for October, 11 for November...Etc...but for this case, on my graph I see 11 before 10 on the Axis area. Could you tell me where can I make an order on my query ? I tried to add order by on my 3 query but It doesn't work and my graph is grey.
    I'm sorry for my english.
    Olivier

    Thank you for your reply, find below my 3 queries
    Series Name Query
    1.
    select null link, d.month, sum(data.nbr) Delivered
    from online_data data, online_date d
    where data.date_events = d.date_events
    and data.kpi_id = 2
    group by d.month
    2.
    select null link, d.month, sum(data.nbr) Opened
    from online_data data, online_date d
    where data.date_events = d.date_events
    and data.kpi_id = 4
    group by d.month
    3.
    select null link, d.month, sum(data.nbr) Submited
    from online_data data, online_date d
    where data.date_events = d.date_events
    and data.kpi_id = 5
    group by d.month
    The field Month is a numeric field : 1 / 2 / 3...until 12 for month
    But my graph is like this
    http://img47.xooimage.com/files/e/7/3/chart-8b04ad.png
    You can see that my graph start with 11 on axis area and finish with 10...il would like to order by ASC
    Edited by: user1642453 on Dec 3, 2008 6:41 AM

  • Dynamic Combination Chart

    I am using Report Builder 10.1.2.0.2 to generate an RDF that will be deployed to the application server via the rwservlet.
    I need to create multiple combination charts (about 20). Is it possible to create the charts dynamically based on a query (repeating frame style)? Or do I have to create each graph manually (fixed)?
    Any help would be greatly appreciated.
    Thank you,
    Roger

    Hi,
    Can you please mention it clearly when exactly the data changes  in your chart.
    In which properties you have bined the excel cell. Test it manually by changing value in the excel binded cell and check wheather the changes are happening or not.
    Take and spreadsheet and bind it to MAX fucntion cell and Chart Array values and record the changes during run time.
    It may help you to record the changes happening during runtime.
    Through this you may find a solution for your problem,
    If still the problem pertains please provide the Xcelsius SP version and fix pack
    To get such details
    In Xcelsius you can go to Help menu
    Regards,
    AnjaniKumar C.A.

  • SVG Charts Display

    Hi Friends,
    Thanks for sparing your valuable time i watching this thread.
    I had a table with values of amounts where some values are negative also. Now I want to display those values in a Chart. I tried with the SVG Chart where it is not allowing me to start the axis with negative amount. It is prompting to enter either 0 or greater than that to start with.
    Can anyone tell me which chart is best feasible to display with the following items:
    I have 13 Categories (Static), Months (Dynamic, atleast 30 months will be there), Amounts for each category for each month.
    I need to display this in the chart so as to better know the burn rate.
    Thanks,
    Sekhar.

    All browsers have SVG support built-in now, except for Internet Explorer that needs help. The Adobe SVG Viewer is just one of the options for that help, it is no longer supported officially, but you can still download it.
    Going from SVG to Flash is throwing out much of the power you get from the openness.

Maybe you are looking for

  • Error in Goods movement BAPI_GOODSMVT_CREATE

    I am using the BAPI_GOODSMVT_CREATE. I am appendign 10 records to my table and executing the BAPI. It is executing successfully for the first 2 records.But for rest 8  records i am getting an error "Content of order 1000030903 : 6211300 transferred t

  • MeRepMeta.xml doesn't work for MAM 2.5

    I have a problem with my meRepMeta.xml. Background: Before we used WAS 6.20 and MAM 2.0. Exporting the XML file for our upload SYncBO and added to the original meRepMeta.xml worked well. At least the following code worked were Z_EPC is the name of ou

  • Issue with DBadapter - Getting Multiple records from DB

    Hi, i am facing issues when i am trying to take out data from database and populate it in my Dataobject... I ll gv an example... I have table A & B where A - B is 1:M mapping... Now suppose, A is having one records and B is having 2 records in DB...

  • OBIEE Production Environment - Should it be made Private or Public?

    I am interested to know whats the best practice for OBIEE Production environment's firewall setup? I feel it should be behind the firewall on private space, but i am having to convince my networking folks to make it private instead of public? But i d

  • Pages for iPad--different first page

    I haven't been able to find a way in Pages for iPad to create a different first page for headers and footers. Is it possible?