Svg line chart  problem with latest patch?

Hi team,
I was checking out one page containing an SVG chart that I didn't modify in 2 weeks, according to the application builder, but it seems to hang after displaying the first line series of 4 total.
It was working before the last patch was installed.
It's page 65 of application 21670 in the online environment.
Choose "automobile" from the first drop down list and click on the button, the chart appears but then it seems to be waiting for something to download.
If you move the mouse over any textual part, you can see in the status line the following message:
"xml processing instuction not at start of external entity: line 172, column 0".
If you open up the SVG source by right clicking on the chart, you will see at the end of the file an error text message returned by oracle (ORA-06502), but what is particularly strange is the presence of an <?xml> processing instruction just in the middle of the source code listing.
It looks like it is trying to append the second chart series by appending another svg source file.
Could you check if I did anything wrong or if it is a problem of the patch?
I have got other chart type running without problems.
Thanks!
Bye,
Flavio

Things are getting complicated.
I found some cases where the chart is displayed correctly, which made me think of some unexpected values returned by the underlying queries.
Since my chart is made up of 4 different series returning 12 points each, I assembled the queries with UNION ALL and checked out what was returned both in a failing case and a successful one but I can't figure out a valid explanation, the only thing I notice is that in the failing case there are some values higher than average, say 10 times bigger than the average value and for some reason the chart stops drawing points exactly after the peak value (1155.62, see below).
Each series returns exactly 12 points, some nulls, but that's doesn't seem to be the problem.
I wonder if the problem is with the "autoscale" algorithm, but I am lost at the moment...
Here is a successful data sample:
- APRIL -
- APRIL 119.57125
- APRIL -
- APRIL -
- AUGUST 160.5
- AUGUST 157.53
- AUGUST 157.53
- AUGUST 119.57125
- DECEMBER -
- DECEMBER 119.57125
- DECEMBER 113.67
- DECEMBER 131.214
- FEBRUARY 104
- FEBRUARY 119.57125
- FEBRUARY 126.418333333333333333333333333333333333
- FEBRUARY 125
- JANUARY 153
- JANUARY 119.57125
- JANUARY 134.845
- JANUARY 145
- JULY 154.56
- JULY 119.57125
- JULY 154.56
- JULY 154.56
- JUNE -
- JUNE -
- JUNE -
- JUNE 119.57125
- MARCH 43.5
- MARCH 119.57125
- MARCH 106.918333333333333333333333333333333333
- MARCH 100.166666666666666666666666666666666667
- MAY -
- MAY 119.57125
- MAY -
- MAY -
- NOVEMBER 118
- NOVEMBER 131.214
- NOVEMBER 125.3775
- NOVEMBER 119.57125
- OCTOBER 164
- OCTOBER 119.57125
- OCTOBER 134.5175
- OCTOBER 134.5175
- SEPTEMBER 59.01
- SEPTEMBER 119.57125
- SEPTEMBER 124.69
- SEPTEMBER 124.69
and now an offending one:
- APRIL -
- APRIL 287.743333333333333333333333333333333333
- APRIL -
- APRIL -
- AUGUST 1155.62
- AUGUST 655.09
- AUGUST 655.09
- AUGUST 287.743333333333333333333333333333333333
- DECEMBER 135
- DECEMBER 287.743333333333333333333333333333333333
- DECEMBER 197.2525
- DECEMBER 349.865
- FEBRUARY 114
- FEBRUARY 287.743333333333333333333333333333333333
- FEBRUARY 315.947142857142857142857142857142857143
- FEBRUARY 130
- JANUARY 153
- JANUARY 287.743333333333333333333333333333333333
- JANUARY 321.741428571428571428571428571428571429
- JANUARY 190
- JULY 154.56
- JULY 287.743333333333333333333333333333333333
- JULY 154.56
- JULY 154.56
- JUNE -
- JUNE -
- JUNE -
- JUNE 287.743333333333333333333333333333333333
- MARCH 223.5
- MARCH 287.743333333333333333333333333333333333
- MARCH 182.787142857142857142857142857142857143
- MARCH 156.375
- MAY -
- MAY 287.743333333333333333333333333333333333
- MAY -
- MAY -
- NOVEMBER 118
- NOVEMBER 392.838
- NOVEMBER 452.4075
- NOVEMBER 287.743333333333333333333333333333333333
- OCTOBER 354
- OCTOBER 287.743333333333333333333333333333333333
- OCTOBER 461.5475
- OCTOBER 461.5475
- SEPTEMBER 182.01
- SEPTEMBER 287.743333333333333333333333333333333333
- SEPTEMBER 497.396666666666666666666666666666666667
- SEPTEMBER 497.396666666666666666666666666666666667
Weird, isn'it?
Bye,
Flavio

Similar Messages

  • Problem with latest patch, Mozilla won't fit on 1024*768

    Today (13/07/04) after the Mozilla patch, the display of the explorer is get bigger. I use 1024*768 on desktop. Now I have to scroll sideways to see the full page...
    Please fix it
    Thank You

    This is it, thank you, it's now good with 125% windows display with 1.0 value.
    Cheers

  • Problems with SVG line charts based on PL/SQL returning SQL

    Dear all - I wonder if anyone can tell me whether this problem is likely to be fixed at some point?
    It relates to the fact that you can't get more than one series on a chart where the SQL is returned from PL/SQL.
    It is a huge issue for us when trying to create complex, dynamic charts, which are simple enough in PL/SQL, but end up quite nightmarish in pure SQL.
    Although we have implemented Maani SWF (Flash) charts as a workaround, users don't like them as there's no 'save as...' or copy+paste and they seem to print very badly indeed.
    Here's part of a post from last May with more detail:
    "If I take a really simple table like this:
    CREATE TABLE "CHART_TEST"
    ( "X" DATE NOT NULL ENABLE,
    "Y" NUMBER(5,0) NOT NULL ENABLE,
    CONSTRAINT "CHART_TEST_PK" PRIMARY KEY ("X") ENABLE
    and populate it with:
    X Y
    2006-01-01T00:00:00 1
    2006-02-01T00:00:00 2
    2006-03-01T00:00:00 3
    2006-04-01T00:00:00 4
    2006-05-01T00:00:00 5
    2006-06-01T00:00:00 6
    2006-07-01T00:00:00 7
    2006-08-01T00:00:00 8
    2006-09-01T00:00:00 9
    2006-10-01T00:00:00 10
    I can create a chart with a single series using syntax something like:
    begin
    return 'select null link, x label, y value
    from chart_test';
    end;
    and this works fine. However, if I add a second series:
    begin
    return 'select null link, x label, (y + 1) value
    from chart_test';
    end;
    then the whole of the chart region blanks out.
    There's an example at:
    http://htmldb.oracle.com/pls/otn/f?p=15491:1"
    Many thanks,
    John.

    On some, but not all SVG line charts, I had trouble when some values are ZERO.
    Putting a CASE WHEN var = 0 then 0.05 ELSE var END in the select statement
    fixed those situations.
    I had missing lines when the number of data points in a series exceeded the default number of 15, and I did not set in the series configuration to a number equal to or higher that the number of data points in that series.
    And I had one instance, where a couple missing lines reappeared when I exited
    the browser and app completely and restarted the app.
    All these comments apply to ver 1.6x and 2.0x

  • SVG line chart raises ORA-20001 witha valid SQL query

    Hi,
    I am on version 1.6 & 10g database. I developed an SVG line chart which was working fine, but I wanted to fill in some sparse data by using data densification. So I enhanced my query with a partitioned outer join as follows:
    select null l, month_start, issue_count
    from
    (with dates as
    (select add_months
    ( to_date( '01-jul-2004' ),
    column_value-1) dt
    from table( vtable(12) )),
    iss as
    (select trunc(start_date, 'MON') mon , count(*) cnt
    from issues
    group by trunc(start_date, 'MON'))
    select dates.dt month_start, NVL(iss.cnt, 0) issue_count
    from dates left outer join iss on (dt=mon)
    Now the chart throws an ORA-20001 get_data error. The query is valid as it runs in SQL*plus no problems. What is it choking on?
    Thanks,
    Steve

    Steve,
    I didn't mean for you to put in on the Studio, just install the app in your workspace on htmldb.oracle.com, use SQL Workshop there to compile your procedures, tell us the app ID, and that's it.
    The error message presentation needs some improvement, give us time. We're spending most of our energy on improving the capability of the product.
    Scott

  • "no data found" in SVG Line Chart

    Hello,
    I have a problem with a SVG Line Chart!
    I have multiple series in the Line Chart, which data is based on multiple select lists.
    When I leave one select list blank, so that one line has no data, the "no data found" statement appears in the Chart.
    But when I delete the "no data found" statement in the Series Attributes it would not be deleted. Nevertheless when I open the Series Attributes again the message is still there....
    Does anybody have an idea how I van delete the "No Data found Message"???
    Thanks,
    Tim

    Chris and Cristoph -
    I have found that many times errors like this are caused by SQL statements that don't really address the business need or the requirements for the chart. Let me use a simple example:
    SELECT d.dept_name  dept_name,
           sum(s.sales_total)  sales_total
    FROM orders o, depts d
    WHERE o.dept_id = d.dept_id
      AND o.time_frame = 'Q1'
    GROUP BY dept_nameSeems simple enough. But what if this statement is run early during the Q1 timeframe and one dept hasn't made any sales yet? Well, they won't show up in the output of this statement. From a business perspective, you will want that dept to show on the report with a zero total sales. You don't want them excluded from the report. So how do we fix this?
    There are several options.
    One dirty way of solving this is putting in a dummy record for each dept into the orders table with a 0 sales_total value for each time unit. YUK! That has wrong written all over it!
    We could use a different type of join. And then use NVL or a Case or IF statement to turn Null Values into 0.
    SELECT d.dept_name dept_name,
           sum(nvl(s.sales_total,0))  sales_total
    FROM  orders o RIGHT JOIN dept d ON d.dept_id = o.dept_id
    WHERE o.time_frame = 'Q1'
    GROUP BY dept_nameWe could also square our data sets and summarize with an inner select
    SELECT dept_name dept_name,
           sum(sales_total) sales_total
    FROM (
      SELECT d.dept_name ,
             sum(s.sales_total)  sales_total
      FROM orders o, dept d
      WHERE o.dept_id = d.dept_id
        AND o.time_frame = 'Q1'
      GROUP BY dept_name
      UNION ALL
      SELECT DISTINCT dept_name ,
             0 sales_total
      FROM dept
    GROUP BY dept_nameThe final result is that every dept has a value. That is the key. This is how the chart expects the data and this is probably how your business expects the data.
    Austin

  • Transforming XML data into SVG line charts

    Hi
    I am trying to transform revenue data from an XML file into an SVG line chart. The problem is that I am quite new to XPath and XSLT and whereas I can draw the grid for my chart I struggle drawing the lines using the data from the XML doc.
    The XML look something like the one below, and I would like to have one chart for each product and in each chart having the time on the x-axis and chart the revenue by regions.
    Any help on this is much appreciated.
    Thanks
    Peter
    <?xml version="1.0"?>
    <revenue>
    <caption>
    <heading>My title</heading>
    </caption>
    <date name="01/01/2003">
    <region name="Asia">
    <product_a>30</product_a>
    <product_b>12</product_b>
    <product_c>301</product_c>
    </region>
    </date>
    <date name="02/01/2003">
    <region name="Asia">
    <product_a>32</product_a>
    <product_b>12</product_b>
    <product_c>301</product_c>
    </region>
    <region name="America">
    <product_a>57</product_a>
    <product_b>31</product_b>
    <product_c>457</product_c>
    </region>
    </date>
    <date name="03/01/2003">
    <region name="Asia">
    <product_a>38</product_a>
    <product_b>12</product_b>Long postings are being truncated to ~1 kB at this time.

    Instead of using SVG charting can I suggest that you look into digital charts. This service creates charts on the fly and is very easy to integrate with web applications.
    Christopher
    www.billboard.net

  • Looking for a site that shows problems with windows patches or updates.

    Looking for a site that shows problems with windows patches or updates...so I know what not to install.
    Plenty of sites list and summarize individual patches, I want one that consolidates problems and complaints so I can better assess the risk. Currently I'm waiting to install patches several days and doing google searches. That works, but I'd rather find a place
    that does it with expertise.
    Which forums would be best to look for such problems.
    Thanks in and advance for suggestions

    Hi,
    I agreed with Cyber and Rick.
    Windows update helps to keep your PC safer—and your software current—by fetching the latest security and feature updates from Microsoft via the Internet.
    Although there might be some problems when installing it, Windows update is not the one to blame.
    For troubleshooting Windows updates, if needed:
    Fix Microsoft Windows Update Issues
    http://support2.microsoft.com/gp/windows-update-issues
    Best regards
    Michael Shao
    TechNet Community Support

  • Stacked 100% bar chart - Problem with datatips for zero value data points

    I have a stacked 100% bar chart that shows datatips in Flex 4.   However, I don't want it to show datatips for
    data points with zero values.   Flex 4 shows the datatip for a zero value data point on the left side of a bar if the data point is not the first in the series.
    Here's the code that illustrates this problem.    Of particular concern is the July bar.    Because of the zero value data point problem, it's not possible to see the datatip for "aaa".
    Any ideas on how we can hide/remove the datatips for zero value data points ?        Thanks.
    <?xml version="1.0"?>
    <s:Application
    xmlns:fx="
    http://ns.adobe.com/mxml/2009"xmlns:mx="
    library://ns.adobe.com/flex/mx"xmlns:s="
    library://ns.adobe.com/flex/spark"creationComplete="initApp()"
    height="
    1050" width="600">
    <s:layout>
    <s:VerticalLayout/>
    </s:layout>
    <fx:Script><![CDATA[ 
    import mx.collections.ArrayCollection;[
    Bindable] 
    private var yearlyData:ArrayCollection = new ArrayCollection([{month:
    "Aug", a:1, b:10, c:1, d:10, e:0},{month:
    "July", a:1, b:10, c:10, d:10, e:0},{month:
    "June", a:10, b:10, c:10, d:10, e:0},{month:
    "May", a:10, b:10, c:10, d:0, e:10},{month:
    "April", a:10, b:10, c:0, d:10, e:10},{month:
    "March", a:10, b:0, c:10, d:10, e:10},{month:
    "February", a:0, b:10, c:10, d:10, e:10},{month:
    "January", a:10, b:10, c:10, d:10, e:10}]);
    private function initApp():void {}
    ]]>
    </fx:Script>
    <s:Panel title="Stacked Bar Chart - Problems with DataTips for Zero Value Items" id="panel1">
    <s:layout>
    <s:HorizontalLayout/>
    </s:layout>
    <mx:BarChart id="myChart" type="stacked"dataProvider="
    {yearlyData}" showDataTips="true">
    <mx:verticalAxis>
     <mx:CategoryAxis categoryField="month"/>
     </mx:verticalAxis>
     <mx:series>
     <mx:BarSeries
    xField="a"displayName="
    aaa"/>
     <mx:BarSeries
    xField="b"displayName="
    bbb"/>
     <mx:BarSeries
    xField="c"displayName="
    ccc"/>
     <mx:BarSeries
    xField="d"displayName="
    ddd"/>
     <mx:BarSeries
    xField="e"displayName="
    eee"/>
     </mx:series>
     </mx:BarChart>
     <mx:Legend dataProvider="{myChart}"/>
     </s:Panel>
     <s:RichText width="700">
     <s:br></s:br>
     <s:p fontWeight="bold">The problem:</s:p>
     <s:p>Datatips for zero value data points appear on left side of bar (if data point is not the first point in series).</s:p>
     <s:br></s:br>
     <s:p fontWeight="bold">For example:</s:p>
     <s:p>1) For "June", eee = 0, mouse over the left side of the bar to see a datatip for "eee". Not good.</s:p>
     <s:br></s:br>
     <s:p>2) For "July", eee = 0 and aaa = 1, can't see the datatip for "aaa", instead "eee" shows. Real bad.</s:p>
     <s:br></s:br>
     <s:p>3) For "Feb", aaa = 0, datatip for "aaa" (first point) does not show. This is good.</s:p>
     <s:br></s:br>
     <s:p>4) For "Mar", bbb = 0, datatip for "bbb" shows on the left side of the bar. Not good.</s:p>
     <s:br></s:br>
     <s:p fontWeight="bold">Challenge:</s:p>
     <s:p>How can we hide/remove datatips for zero value data points?</s:p>
     <s:br></s:br>
     </s:RichText></s:Application>

    FYI.
    Still have the issue after upgrading to the latest Flex Builder 4.0.1 with SDK 4.1.0 build 16076.   
    Posted this as a bug in the Adobe Flex Bug and Issue Management system.     JIRA
    http://bugs.adobe.com/jira/browse/FLEXDMV-2478
    Which is a clone of a similar issue with Flex 3 ...
    http://bugs.adobe.com/jira/browse/FLEXDMV-1984

  • Help - SVG Line Chart - ORA-20001 line_chart error Parse error ORA-00911

    Gurus,
    Need help.
    I am trying to plat multiple series in a SVG line chart but am repeatedly getting line_chart error eventhough SQL queries work perfectly in sql workshop/sqlplus etc. How do I get past this error.
    Sample queries I am using to plot line chart are
    select link, col1, value from (select null link, col1, col2 value from xy);
    select link, col1, value from (select null link, col1, col3 value from xy);
    xy is a table with three number columns col1, col2 & col3.
    Thanks in advance

    Try taking the semicolon ";" off the end of the SELECT statements.
    Mike

  • Transforming XML data into SVG line charts using XSLT

    Hi
    I am trying to transform revenue data from an XML file into an SVG line chart. The problem is that I am quite new to XPath and XSLT and whereas I can draw the grid for my chart I struggle drawing the lines using the data from the XML doc.
    The XML look something like the one below, and I would like to have one chart for each product and in each chart having the time on the x-axis and chart the revenue by regions.
    Any help on this is much appreciated.
    Thanks
    Peter
    <?xml version="1.0"?>
    <revenue>
    <caption>
    <heading>My title</heading>
    </caption>
    <date name="01/01/2003">
    <region name="Asia">
    <product_a>30</product_a>
    <product_b>12</product_b>
    <product_c>301</product_c>
    </region>
    </date>
    <date name="02/01/2003">
    <region name="Asia">
    <product_a>32</product_a>
    <product_b>12</product_b>
    <product_c>301</product_c>
    </region>
    <region name="America">
    <product_a>57</product_a>
    <product_b>31</product_b>
    <product_c>457</product_c>
    </region>
    </date>
    <date name="03/01/2003">
    <region name="Asia">
    <product_a>38</product_a>
    <product_b>12</product_b>
    <product_c>301</product_c>
    </region>
    <region name="America">
    <product_a>31</product_a>
    <product_b>9</product_b>
    <product_c>357</product_c>
    </region>
    </date>
    <date name="04/01/2003">
    <region name="Asia">
    <product_a>33</product_a>
    <product_b>12</product_b>
    <product_c>301</product_c>
    </region>
    <region name="America">
    <product_a>43</product_a>
    <product_b>16</product_b>
    <product_c>430</product_c>
    </region>
    </date>
    <date name="05/01/2003">
    <region name="Asia">
    <product_a>36</product_a>
    <product_b>12</product_b>
    <product_c>301</product_c>
    </region>
    <region name="America">
    <product_a>54</product_a>
    <product_b>1</product_b>
    <product_c>561</product_c>
    </region>
    </date>
    </revenue>

    You could try Jeni's XSLT utilities for SVG :
    http://www.jenitennison.com/xslt/utilities/svg-utils.html
    Specifically, the sample code provided, when a couple of SVG charts are being generated from XML data :
    http://www.jenitennison.com/xslt/utilities/svg-example.html
    Hope that helps.

  • Problems with latest version of Muse

    I'd like to report some problems with latest version of Muse. Its actually all related with scroll effect.
    1. In previous version I had a group of rectangles and when I added to them  motion (initial motion: 0 everywhere, final motion: 0 everywhere) they where sliding nicely down during scrolling my page, and it happened only in y line (horizontally). Now its moving also on the right and left, when I am changing size of window. Other thing is that in firefox this group of rectangles is pinned to bottom of window.
    2.  I have footer that I want to be always pinned to the bottom of window. The footer is a group of objects: rectangle + one png file with hyperlink, and one text with hyperlink - and of course it worked perfectly in previous version, but now finally when I export the page I have only the rectangle without hyperlink on the bottom of the page and the rest is missing.
    I hope I explained it clearly? I did my best :-)

    I have a same problem like no.2.
    Finally, I fixed it.
    First, You have to ungroup the footer objecs.
    Second, Group again that.
    Then export your site.
    Please try this!
    I hope this will be of some help.

  • Has ayone experienced any problems withe latest apple tv update

    who has experienced problems withe latest apple tv update???

    Welcome to the Apple community.
    There are always a few that experience some problem or other after an update. Exactly what problems are you having please.

  • Problem with latest version of firefox 15.0.1,whenever i download video from youtube or any other site using idm it shows .webm format instead of flv or mp4.

    problem with latest version of firefox 15.0.1,whenever i download video from youtube or any other site using idm it shows only .webm format to download instead of flv or mp4.previous version works fine.also other browsers work fine.

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    *http://kb.mozillazine.org/Cookies

  • Problem with CS5 patch tool

    Hi, I have this annoying problem with the patch tool that whenever I use it, i.e., drag the selected area to a new location it pastes the selected area as if it were smudged, such as feathered, and I practically can't use it. I have checked the selection and it is not feathered, but still, the selection being pasted is smudged. Any settings that I am not aware of?
    Thanks.

    The Patch (content aware) tool is affected by the area around your selection. To get around the problem, make a selection of the beak and he surround without the bird and put it on a separate layer as shown here. Then select the beak and apply the Patch command. Without the dark bird for reference, you will get the result you want. 

  • Gantt Chart: Problems with more than 39 elements

    Hi all,
    I have a problem with Gantt Project Chart.
    Please have a look at http://tryapexnow.com/apex/f?p=2141:2 (credentials: demo/demo)
    If you limit to 39 rows this works fine, but with 40 rows or more the timeline is not in line with the datagrid.
    Strange thing is that as soon as you collapse all tasks the timeline is correct.
    Uncollapsing brings back wrong display.
    Has anybody seen this behaviour before and can help me out on that?
    Thanks for help,
    Moritz
    Edited by: commi235 on 31.05.2011 13:23

    Hello Moritz,
    the "Maximum Rows"-option is as default set to 40.
    if you created the chart by "Create Region => Chart => Flash Chart => ..." you can change this value in tab "Chart Series", below the "Build Query"-button.
    But I don't know how to change the maximum number of rows, when the chart is created via
    "var chart = new AnyChart(''#IMAGE_PREFIX#flashchart/anygantt_4/swf/AnyGantt.swf''); " in a HTML-region.
    I'm very interested in finding a solution.
    Kirsten

Maybe you are looking for

  • Convert seconds to [h]:mm:ss format on report text box

    I want to convert seconds to hh:mm:ss format on the report text box. I use =Format(Sum([MyTime])/(24*60*60),"hh:nn:ss"), but it does not work if the hours more than 24 hours, since the format is for  the time format for the day. I need the result sho

  • RAM Upgrade - (2) 256's + (2) 512's?

    All the research I have done into upgrading my RAM suggests matching what I already have. My question is, I currently have a dual 1.8 G5 with 512 RAM (2 256 sticks) -- in order to upgrade do I need to get another two 256 sticks to get to 1gb total, o

  • Syncing multiple iPads to share a single calender?

    I'm tring to set up at work where we have 3 ipads and 3 iphones all os seperate apple IDs however we want to share calenders as we arent always in the office at the same time  we would like each person to be able to update or add a calender entry and

  • My Iphone stoped to work, one month after I bought, how can I change it?

    My Iphone stopped to work (IMEI 01**********511), I'd like to changed it on Canadá, is it possible? Can I change for I Iphone 6? How much is it? <Personal Information Edited by Host>

  • Fuction Module Description

    Hi Gurus I need to know the one function module description named as "RSPC_VARIANT_DELATE" and another doubt is where i can found any function module decryption. Thanks for reply...