Bi publisher dual graphs

Hi,
I'm using BI Publisher and I'm trying to create a bar graph combined with a line graph (within the same graph)
The BI Beans DTD does not seem to have an graph type for this. Is this possible?

Thanks. Is there any further documentation or tutorials on this? I've looked all over the internet and there is hardly anything on combination graphs. The syntax for the template seems to be guesswork for me at the moment.... any good pointer will be great!

Similar Messages

  • Dual graph algorithm

    Hello to all of you!
    Does anyone know a known algorithm to create the dual graph of a planar (undirected) graph? Or could you give me a hint? I tried to devise a DFS approach, which would use the back and cross edges of the DFS tree in order to form the faces. The problem is that I need the set of disjoint minimum cycles. Thus I would need an algorithm to calculate the difference AUB - A^B, for two cycles A,B, where B is a part of A. By the way, is there any recommended representation of a face?
    Thank you in advance and thaks for your time!
    P.S. For those who would ask what is a face, a face is the area defined by a minimum cycle e.g.:
    In this mesh (ignore dots):
    a-b-c
    I . I . I
    d-e-f
    a,b,c,d form a face
    b,c,e,f form a face
    and there is also the external face -which by the way how can it be defined?
    P.S.2 the Dual Graph is the graph formed by representing each face as a node and each edge which separates two faces, as an edge between the two newlly created nodes.

    OK , guess you're right! Since the following graph:
    O     O
    |\   /|
    | \ / |
    |  O  |
    | / \ |
    |/   \|
    O     O
    and this one
    O---
    |    \
    | O  |
    | | \|
    | |  O
    | | /|
    | O  |
    |   /
    O---are the same, however they have a different embedding AND dual graph.
    So, the embedding is defined by the coordinates of the nodes, along with
    their connectivity info.
    This means that for a start I need an algorithm to return the different faces of
    the graph. (at least these ones have to be fixed in number -no?). Then from
    the topological information for each face I should check their neighboring
    relations.
    For the face discovery I have thought of the following algorithm (in language):
    Create the DFS tree
    -Start from the root r of the DFS tree and visit each neighboring node based
    on the preordering number
    -When we reach a node b which has one or more back-edges we have a
    cycle.
    --For each back edge we go back to the node bs, starting from the
    back-edge which leads us to the node bs with the greatest start time
    (gretest preorder number).
    --from this node, bs, visit neighboring nodes, again based on preordering,
    until we find the node b (which will complete the cycle)
    ---While going towards b follow in reverse direction, each backedge that
    terminates a currntly visited node, and starts from a node t whose
    preorder[t] <= preorder[b]  (to avoid bypassing b by going deeper in the tree)
    and
    postorder[t] > postorder[b] (to avoid reaching another branch)
    -When we reach a node, cs,which has a cross edge to another node, ce, of
    the DFS tree (as a cross edge I mean a (u,v) where pre[u]>pre[v] and
    post[u]>post[v]) we have found another cycle, thus a face
    --from ce we go up the DFS, i.e., in reverse preordering, until we find a node
    a whose postorder[a] > post[cs]
    --from a we go down the DFS (in preordering) choosing the neighbor, an,
    whose postorder[an] >= postorder[cs] (equality means we have found cs
    thus we're done).  While descending we follow the same rules as before, in
    the case of the back edge.Of course the implementation of this algorithms has to support two-way movement in the DFS tree. The distinction between tree,back and cross edges is made through the pre and post ordering.
    I'm not sure but i think that, with the restrictions I have put, this algorithm can be ran while discovering and creating the DFS tree, rather after the DFS tree has been fully created.
    So if the algorithm IS correct, I only need a way to derive the connectivity between the produced faces via their topological information. That is, apart from the indisputable fact that if two faces have two nodes in common, they are neighbors, we have to locate all other edges between faces.
    One idea is for each pair of faces to check their min and max, X and Y coordinates. I have a sense that for faces f1and f2 where,
    f1_max_X > f2_max_X and
    f1_min_X < f2_min_X and
    f1_max_Y > f2_max_Y and
    f1_min_Y < f2_min_Y
    (there must be at most one equality (i.e. <=)but I guess its no harm to add all equalities there)
    holds, f1 and f2 are neighbors, thus an edge (f1,f2) must exist in the dual graph.
    Of course I have written a lot but I really would like to know if there's a "good" algortihm to create faces out there and a technique to create edges between faces given the coordinates.
    I propose the ideas in case someone finds something wrong and reports it or otherwise someone else finds my answer useful in the same topic.
    Thank you in advance!
    Message was edited by:
    M.M.

  • PROBLEM WITH XML PUBLISHER AND GRAPH NOT DISPLAYING IN ORACLE APPS

    Hi
    All you XML Gurus here. I have a problem, When i create a report in XML Publisher desktop i can see a graph im putting into the report on preview and works fine. But when i upload the report as a rtf file into Oracle applications i can see everything else the table logo and stuff .. But just not the Graph Itself when run on the concurrant manager....
    Problem number 2
    Is there a way that i can use XML Desktop and create a line graph with 2 lines rather than 1 plotting
    here is my xml for graph i have made with one line
    chart:
    <Graph>
    <Title text="" visible="true" horizontalAlignment="CENTER"/>
    <LocalGridData colCount="{count(.//SELF_OTHERS)}" rowCount="1">
    <RowLabels><Label></Label></RowLabels>
    <ColLabels>
    <xsl:for-each select=".//SELF_OTHERS"> <Label><xsl:value-of select="BEHAVIOUR"/></Label>
    </xsl:for-each>
    </ColLabels>
    <DataValues>
    <RowData>
    <xsl:for-each select=".//SELF_OTHERS"> <Cell><xsl:value-of select="SCORE"/></Cell>
    </xsl:for-each> </RowData>
    </DataValues>
    </LocalGridData>
    </Graph>
    All help would be much appreciated to my 2 problems....
    Thanks
    Sha

    Hi All
    Will post solution tomorrow or Monday on blog. Heres the chart XML for now.
    chart:
    <Graph graphType="LINE_VERT_ABS"><LegendArea visible="true" />
    <LocalGridData colCount="{count(xdoxslt:group(.//SALE, 'YEAR'))}" rowCount="3">
    <RowLabels>
    <Label>SOFTWARE</Label>
    <Label>HARDWARE</Label>
    <Label>SERVICES</Label>
    </RowLabels>
    <ColLabels>
    <xsl:for-each-group select=".//SALE" group-by="YEAR" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <Label>
    <xsl:value-of select="current-group()/YEAR" />
    </Label>
    </xsl:for-each-group>
    </ColLabels>
    <DataValues>
    <RowData>
    <xsl:for-each-group select=".//SALE" group-by="YEAR" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <Cell>
    <xsl:value-of select="sum(current-group()/SOFTWARE)" />
    </Cell>
    </xsl:for-each-group>
    </RowData>
    <RowData>
    <xsl:for-each-group select=".//SALE" group-by="YEAR" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <Cell>
    <xsl:value-of select="sum(current-group()/HARDWARE)" />
    </Cell>
    </xsl:for-each-group>
    </RowData>
    <RowData>
    <xsl:for-each-group select=".//SALE" group-by="YEAR" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <Cell>
    <xsl:value-of select="sum(current-group()/SERVICES)" />
    </Cell>
    </xsl:for-each-group>
    </RowData>
    </DataValues>
    </LocalGridData>
    </Graph>
    with the following data
    <?xml version="1.0" encoding="UTF-8"?>
    <SALES>
         <SALE>
              <YEAR>2006</YEAR>
              <SOFTWARE>1200</SOFTWARE>
              <HARDWARE>850</HARDWARE>
              <SERVICES>2000</SERVICES>
         </SALE>
         <SALE>
              <YEAR>2007</YEAR>
              <SOFTWARE>1000</SOFTWARE>
              <HARDWARE>800</HARDWARE>
              <SERVICES>1100</SERVICES>
         </SALE>
         <SALE>
              <YEAR>2008</YEAR>
              <SOFTWARE>900</SOFTWARE>
              <HARDWARE>1200</HARDWARE>
              <SERVICES>1500</SERVICES>
         </SALE>
    </SALES>
    The latest Template Builder makes this a cinch!
    Regards
    Tim
    http://blogs.oracle.com/xmlpublisher

  • XML publisher with graph not refresh date

    Hi
    I use EBS r12, and i create report using XML and BI Publisher rtf file, this report include graph, the problem is when i add the graph according to xml data and run the report throw bi publisher desktop its work fine, but when i run it in concurrent it will show table data OK but graph data will not change according to XML data,
    Any suggestion?

    Hi,
    Please refer note:
    BI Publisher Graphing On A Unix Platform Not Handling XML Data [ID 1189413.1]
    Best Regards

  • XML Publisher and Graph code line limited

    Hi All,
    One of our graph report, seem have limited code line. The way we put the coding is in "right click on the graph" > Properties > Alt Tab.. Is there any others place that we can put the code for the graph generation?

    Hi All,
    One of our graph report, seem have limited code line. The way we put the coding is in "right click on the graph" > Properties > Alt Tab.. Is there any others place that we can put the code for the graph generation?

  • Does HP Pavilion p7-1154 support AMD Dual Graphics?

    I have a Pavilion p7-1154 - Serial no.{Removed for privacy} - The motherboard is an AAHD3-HB (stock MB) made by Pegatron. I have upgraded the stock RAM from 6 GB of 1333 to 16 GB of Corsair Vengence 1600 and upgraded the processor from an AMD A6 3600 to an AMD A8 3850, all according to the upgrade guide for this machine from HP. I've also upgraded the PSU from the stock 300w to a Corsair 500w 80Plus Bronze certified PSU.
    Now that's what I'done so far - what I want to know is does the MB (AAHD3-HB) support AMD Dual Graphics, using the suggested graphics cards, I would like to use a Radeon 6670 GPU.
    Mike
    This question was solved.
    View Solution.

    Mike, after consulting with other members, I believe that dual graphis is not available since it is not noted in the specs. 
     However, here is a Youtube video about the CPU.  If you do find that you were able to use it by a BIOS change, please share that information with the forum.  Thanks!
    Please click "Accept as Solution" if your problem is solved.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • Save as in Excel XP to PDF messes up formatting in Adobe Reader X

    I have windows XP and deal a lot with excel. Recently when I go to save as PDF, it does it without a problem, but wont publish my graphs correctly.
    What's the deal?

    Hi
    Security Method: No Security
    Printing: Allowed
    Document Assembly: Not Allowed
    Content Copying: Allowed
    Content Copying for Accessibility: Allowed
    Page Extraction: Not Allowed  <--  Could this be the problem
    Commenting: Not Allowed
    Filling of form fields: Allowed
    Signing: Allowed
    Creation of template pages: Not Allowed
    Thanks for the interest
    Rudi

  • G505s cpu problem

    Hi !
    I have prob. with my cpu A8-4500M
    in windows it is core speed about 2,3Ghz but when i launch any game it drops to 1,77Ghz-1,86Ghz and then even to 0,88Ghz! (i tried so many oprions in graph. options..), and goes up to 1,77Ghz and later again drop down ... All drivers are up to date, and also i want to ask about my graph card, i read a lots of topic here about "dual graph" in these series nb. (now im running win 8, and i tried it on w7 too..)
    My lenovo nb is 59393085.
    And im sorry for my low language skills
    //edit: 
    Also i was trying to overclock it myself via amd overdrive but it said " AMD OverDrive failed to start"
    That temp. is just too much, right after booting system?  And be4 i reinstall it,  it works fine even with that tempr.
    http://valid.x86.fr/ddpgst

    I think it is a basic lack of understanding of the APU concept that is throwing a lot of people off course.  They wrongly assume that they can enable or disable features of the Graphics side of the APU chip as they would a normal dedicated card.
    APU = CPU and GPU on same die, not discrete graphics.  Minimal adjustments to can be made to APU just as you would with normal CPU only.  If anyone wants better performance wih more customizable options, add a discrete graphics card and disable the APU graphics.
    Also - APU will run hotter than CPU's of the same speed due to the inclusion of the GPU onto the core platform, as you have a warm CPU and a warmer GPU under the same hood, side by side.  Intel HD graphics are buried into the CPU core, not a seperate chip on the same die.  They run cooler, but are less powerful and you can not expect good gaiming performance from them.
    APU notebook chips are going to be less powerful gaming rigs than deskops, but better than intel mobile chips with HD graphics would be.  The APU is the crossover vechice of the computing world...

  • Daily ASH Statistics Chart

    Hi, I have two questions about this chart. I am using sqldeveloper 3.2.0.9
    The one axis is obviously time, but what is the veritical axis? Is there a way to save and/or publish this graph?
    Thank you

    I have logged a bug.
    Sue

  • PDF Resolution from Applework

    Hello,
    I need to publish some graphs I created with Applework Drawing. For transferring the documents to the publisher, I converted the graphs into PDFs by using PRINT and saving them as PDF. I have only Adobe Reader 8.0 from free download only. The publisher told me that the resolution of my PDF files was far too low. They wanted them at least 300 dpi What should I do to improve the resolution of my PDF documents before I transfer them to a CD?
    Thank you very much in advance for your help.
    Robert

    What is graphic converter?
    GraphicConverter is a program that lets yu manipulate many kinds of graphic files in many ways. You can set the resolution by hand, crop, resize, add text, sharpen, blur, and more.
    Where can I find it?
    GraphicConverter came bundled with some Macs. I'm not sure which ones. It can also be downloaded from this site:
    http://www.lemkesoft.com/content/188/graphicconverter.html
    It is shareware, but can be tested for free. It is very powerful and well worth the $35 they ask for it.

  • Pie Chart issue

    What is the solution of the following scenario, i am using the Dundas charting control
    shawn aslam

    Hi Rashmi,
    Thanks for your reply. But unfortunately it was not solving my issue. Because I am using Pie chart where there are no series. It has only categories. So i cannot set which column to show and which column to hide. Also I am having only one column marked as visible in my query so i think i do not need to mention any settings in the web templates. Also I am publishing the graphs in portal so excel settings is also not needed for me.
    Thanks .
    Raja

  • RT3290 Latest Driver Update

    Dear HP,
    after all these months releasing a BIOS update is pretty nice move except not giving the user any control over Dual-Graphs. You know that was the only thing, since the BSD times, average user wanted a specific BIOS or Kernel change. Again, nice move.
    To get to my point, while you are updating the **bleep** out of my computer, which freezed it in parts of half minutes for half an hour, the miracle RT3290 driver update of yours seemed to be in no way close to be working.
    I tried to switch on the Network Boot option in BIOS, since you upgraded that too, with no luck.
    However, I changed it to previous version, which if I give a proper **bleep**, was 5.0.0.0 or 5.0.0.9 something. I'm sure you know what I'm talking about.
    Well, since I've written this in a format which subjected the HP Inc. directly and while you surveilling the crep out of us in a way, which I'm sure what the BIOS updates was for, showed some dissappointment of your failures in servicing, so  excusez ma française.
    I may sincerely be glad if I'm pointed on when the working driver update will be available.

    Dear HP
     I want driver for hp RT3290 (All) only.

  • How to plot Dual Y-axis in BI Publisher chart

    Is it possible to plot dual axis in BI publisher chart?
    If I want to plot
    x-axis => Month
    y-axis(left) => Sales(in USD)
    y-axis(right) => Quantity
    how can I do in BIPublisher. Scale of Sales will not be suitable to plot Quantity.
    Please suggest.
    Thanks & Regards.

    for example : see seriesItems. and assignedTo
    <Graph seriesEffect="SE_AUTO_GRADIENT" graphType= "BAR_VERT_CLUST2Y">
    <Y1Axis axisMinAutoScaled="false" axisMinValue="0" axisMaxAutoScaled="true" majorTickStepAutomatic="true"/>
    <Y2Axis axisMinAutoScaled="false" axisMinValue="0" axisMaxAutoScaled="true" majorTickStepAutomatic="true"/>
    <LegendArea visible="true" position="LAP_BOTTOM"/>
    <PlotArea fillColor="#0000FF"/>
    <SeriesItems>
    <Series id="0" color="#B0C4DE" borderColor="#000000" markerType="MT_BAR" assignedToY2="false"/>
    <Series id="1" color="#0000C0" borderColor="#000000" markerType="MT_BAR" assignedToY2="false"/>
    <Series id="2" color="#B0C4DE" markerType="MT_MARKER" markerShape="MS_NONE" assignedToY2="true" lineWidth="0"/>
    <Series id="3" color="#0000C0" markerType="MT_MARKER" markerShape="MS_NONE" assignedToY2="true" lineWidth="0" />
    </SeriesItems>
    <LocalGridData colCount="{count(xdoxslt:group(.//G_1, 'MONTHANDYEAR'))}" rowCount="4">
    <RowLabels>
         <Label>Baseline (bar)</Label>
         <Label>Actuals (bar)</Label>
         <Label>Baseline cumulative (line)</Label>
         <Label>Actual cumulative (line)</Label>     
    </RowLabels>
    <ColLabels>
    <xsl:for-each-group select=".//G_1" group-by="MONTHANDYEAR">
    <Label>
    <xsl:value-of select="current-group()/MONTHANDYEAR"/>
    </Label>
    </xsl:for-each-group>
    </ColLabels>
    <DataValues>
    <RowData>
    <xsl:for-each-group select=".//G_1" group-by="MONTHANDYEAR">
    <Cell>
    <xsl:value-of select="sum(current-group()/BUDGET_VALUE_DELTA[.!=''])"/>
    </Cell>
    </xsl:for-each-group>
    </RowData>
    <RowData>
    <xsl:for-each-group select=".//G_1" group-by="MONTHANDYEAR">
    <Cell>
    <xsl:value-of select="sum(current-group()/REVENUE_AMOUNT[.!=''])"/>
    </Cell>
    </xsl:for-each-group>
    </RowData>
    <RowData>
    <xsl:for-each-group select=".//G_1" group-by="MONTHANDYEAR">
    <Cell>
    <xsl:value-of select="sum(current-group()/CUMULATED_SBP2[.!=''])"/>
    </Cell>
    </xsl:for-each-group>
    </RowData>
    <RowData>
    <xsl:for-each-group select=".//G_1" group-by="MONTHANDYEAR">
    <Cell>
    <xsl:value-of select="sum(current-group()/ACTUAL_CUMULATED[.!=''])"/>
    </Cell>
    </xsl:for-each-group>
    </RowData>
    </DataValues>
    </LocalGridData>
    </Graph>

  • XML Publisher Report not displaying Chart/Graph in Excel Output

    Hi All,
    We are currently on Oracle EBS 11.5.10.2
    I am facing an issue with XML Publisher based report when i try to fetch the output in Excel.
    We have created an RTF in which i have embedded a graph. While viewing the output in PDF everything seems to work fine.
    however when i try to run the report with output as Excel the Graph is not displayed.
    Can you please let me know if i missed anything.
    Also it would be very helpful if someone can tell me how to get the output of Excel in .XLSX format.
    I have seen in various forums that you need to select the output type as Excel 2007, but i am not getting any such option while submitting the report.
    I am on EBS version 11.5.10.2 do we need to install any patch to get the output option.
    Regards,
    Sandeep

    Hi,
    Check this links that might help you..
    https://forums.oracle.com/thread/1018488
    http://docs.oracle.com/cd/E10091_01/doc/bip.1013/e05000/toc.htm
    Here the Exact solution from Oracle
    In the XML PUBLISHER ADMINISTRATOR Resp..
    Click the administration..
    then Click HTML Output
    Then in the Base Image URI Give the url of your application for example
    http://Test.Test.com:8000/OA_MEDIA/
    And then
    Image File Directory give this as per your application setup
    /u01/app/oracle/apps/apps_st/comn/java/classes/oracle/apps/media/
    Thanks & Regards
    Srikkanth.M

  • My xml publisher report not display chart/graph in r12 apps

    dear all
    my xml publisher report is not showing chart/graph in oracle apps r12.1.1, but it's locally preview fine in MS word
    when i register rtf template in apps it just show data in xml not apply template without chart/graph it's work fine in apps
    please guide me.
    thanks
    Adnan zafar goraya

    Hello Adnan,
    To have the XML Publisher graphs display when started from Concurrent request, the DISPLAY environment variable must be specified.
    Please review the following Note on how to setup the Xserver
    Configuring VNC Or XVFB As The X Server For Applications 11i (Doc ID 181244.1)
    After this is done, you can run once again the concurrent program and check the output.
    Bogdan

Maybe you are looking for