Creating a graph help!

Hi,
I am having problems with the ideas of graphs
I think that an edge is a link and a node is the place where data is stored
i want the node to contain a string data value and a node id which is used to connect to another node
the problem is that the edge does not fit in the picture, that is worrying me. In many places they use edges for some reason
and I do not understand why. This is the code which i am up to.
Any comments if there is something i am missing?
public class graph
     private class Node
          String name;
          int nodeid;
          int to;
          int from;
          private static int nodeno=1;
          public Node()
               name=null;
               nodeid=nodeno;
               nodeno++;
               to=0;
               from=nodeid;
          public void LinkNode(Node a, Node b)
               a.to=b.nodeid;
}

When implementing an unweighted graph, you don't really need a Edge class. Here's how you could do it:
class Graph {
  Set<Node> nodes;
class Node {
  String name;
  int id;
  List<Node> edges; // a node can have zero or more edges (can be connected to 0 or more other Nodes)
But when your graph is weighted, you could define an Edge like this:
class Graph {
  Set<Node> nodes;
class Node {
  String name;
  int id;
  List<Edge> edges; // a node can have zero or more edges (can be connected to 0 or more other Nodes)
class Edge {
  double weight;
  Node destination;
}

Similar Messages

  • Help to create complex graphs in oracle 10g reports

    As my company has migrated from 6i to Oracle 10g, but as graph ogd files are obselete in Oracle 10g , I am trying to create new graphs in Oracle 10g.
    But problem I am facing that I cannot give axis value 'LABEL' or define my own scale or draw any lines on chart or inshort plot graph as I need. Moreover no way to read objects on Chart. In forms 6i it was easy to read object with command "OG_GET_OBJECT(OBJECT_NAME)". Helps tell me to use graph.dtd but I am unable to use it or I don't know how to use it. No documentation available anywhere how to use graph.dtd syntax.
    Is it possible to achieve my above goals or any other tools to customize charts.
    Prashant

    Hello FormsEleven,
    First of all very Thanks for reply. Thanks for your valuable time given to me.
    I don't have any error in my java/jinit console infact latest jinit is running and web browser start with message applet are being loaded and Oracle forms service installed successfully. All other forms details are very well displayed on browser form, only bean area remains empty. Following are my formsweb.cfg details. Note on below [bigraph] section I have commented some lines but that also done after my form did not work.
    ### Forms DEMO FOR BIGRAPHS
    [pjc_demos]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/icons.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/icons.jar
    pageTitle=Oracle Forms - Pluggable Java Components
    form=pjclaunch.fmx
    otherparams=demo_root=D:\DevSuiteHome_1\forms\demos
    scripting=true
    [pjc_jspell]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/jspellintegration.jar,/forms/formsdemo/jars/jspell2n_java11.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/jspellintegration.jar,/forms/formsdemo/jars/jspell2n_java11.jar
    pageTitle=Oracle Forms - Pluggable Java Components
    form=jspell.fmx
    otherparams=dictionary_hostname=%JSPELL_HOST% dictionary_port=8888
    [HL]
    # Healthy Living Demo.
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/icons.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/icons.jar
    baseHTMLJInitiator=basejini.htm
    form=healthyliving.fmx
    userid=hl/hl@skoda
    width=994
    height=582
    pageTitle=Healthy Living
    splashScreen=/forms/formsdemo/images/suppsplash.gif
    background=/forms/formsdemo/images/white.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    lookAndFeel=oracle
    colorScheme=titanium
    # Used for demo. This is the destination directory
    # when uploading images and XML files.
    otherparams=output_dir=D:\DevSuiteHome_1\forms\demos\temp
    [IORG]
    imageBase=codebase
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/iorganizer.jar,/forms/formsdemo/jars/icons.jar
    archive=frmall.jar,/forms/formsdemo/jars/iorganizer.jar,/forms/formsdemo/jars/icons.jar
    baseHTMLJInitiator=basejini.htm
    form=iorganizer.fmx
    userid=iorg/iorg@skoda
    width=994
    height=582
    pageTitle=iOrganizer
    splashScreen=/forms/formsdemo/images/iorganizer.gif
    background=/forms/formsdemo/images/white.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    lookAndFeel=oracle
    colorScheme=titanium
    otherparams=usesdi=yes
    [reusable_calendar]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/icons.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/icons.jar
    pageTitle=Oracle Forms - Reusable Components
    form=calendar.fmx
    userid=oe8/oe8@skoda
    imagebase=codebase
    [reusable_picklist]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar
    pageTitle=Oracle Forms - Reusable Components
    form=picklist.fmx
    userid=oe8/oe8@skoda
    [reusable_save2html]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar
    pageTitle=Oracle Forms - Reusable Components
    form=save2html.fmx
    userid=hr8/hr8@skoda
    otherParams=OUTPUT_REAL_DIR=D:\DevSuiteHome_1\forms\demos\temp/ OUTPUT_VIRTUAL_DIR=/forms/formsdemo/temp/
    [reusable_wizard]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar
    pageTitle=Oracle Forms - Reusable Components
    form=wizard.fmx
    userid=hr8/hr8@skoda
    [featuredemo_array_dml]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar
    pageTitle=Oracle Forms - Feature Demos
    form=arraydml.fmx
    userid=oe8/oe8@skoda
    [featuredemo_calculated_fields]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar
    pageTitle=Oracle Forms - Feature Demos
    form=calcform.fmx
    userid=oe8/oe8@skoda
    [featuredemo_object_columns]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar
    pageTitle=Oracle Forms - Feature Demos
    form=objref.fmx
    userid=oe8/oe8@skoda
    [featuredemo_stored_procedure]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar
    pageTitle=Oracle Forms - Feature Demos
    form=storproc.fmx
    userid=oe8/oe8@skoda
    [featuredemo_trace]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar
    pageTitle=Oracle Forms - Feature Demos
    form=trace.fmx
    userid=oe8/oe8@skoda
    otherparams=record=forms tracegroup=0-199
    [featuredemo_webservice]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar
    pageTitle=Oracle Forms - Feature Demos
    form=webservice.fmx
    userid=oe8/oe8@skoda
    [featuredemo_javamail]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/icons.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/icons.jar
    pageTitle=Oracle Forms - Feature Demos
    form=javamail.fmx
    #Upload directory for attachments
    otherparams=temp_dir=D:\DevSuiteHome_1\forms\demos\temp
    [bigraph]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,d:\DevSuiteHome_1\forms\java\frmbld.jar;d:\DevSuiteHome_1\jlib\importer.jar;d:\DevSuiteHome_1\jlib\debugger.jar;d:\DevSuiteHome_1\jlib\utj.jar;d:\DevSuiteHome_1\jlib\dfc.jar;d:\DevSuiteHome_1\jlib\help4.jar;d:\DevSuiteHome_1\jlib\oracle_ice.jar;d:\DevSuiteHome_1\jlib\jewt4.jar;d:\DevSuiteHome_1\jlib\ewt3.jar;d:\DevSuiteHome_1\jlib\share.jar;d:\DevSuiteHome_1\forms\java\frmwebutil.jar;d:\DevSuiteHome_1\forms\java\frmall.jar;D:\DevSuiteHome_1\forms\oracle\forms\demos\bigraph\FormsGraph.jar;D:\DevSuiteHome_1\LIB\xmlparserv2.jar;D:\DevSuiteHome_1\jlib\bigraphbean.jar;D:\DevSuiteHome_1\jlib\bigraphbean-nls.zip;D:\DevSuiteHome_1\jlib\jewt4.jar;D:\DevSuiteHome_1\jlib\LW_PfjBean.jar;D:\DevSuiteHome_1\jlib\share.jar
    ;archive=frmall_jinit.jar,/forms/demos/jars/demo.jar,/forms/demos/jars/FormsGraph.jar
    pageTitle=Oracle Forms - Forms BI Graph integration
    ;form=graph.fmx
    ;userid=oe8/oe8@skoda
    ; Set imagebase to codebase to use icons stored in FormsGraph.jar
    imagebase=codebase
    [pjc_host]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/host.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/host.jar
    pageTitle=Oracle Forms - Client HOST() Command
    form=host.fmx
    [cursorpos]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/cursorpos.jar
    archive=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/cursorpos.jar
    pageTitle=Oracle Forms - CursorPos PJC Demo
    form=cursorpos.fmx
    [timeout]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/timeout.jar,/forms/formsdemo/jars/demo.jar
    archive=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/timeout.jar
    pageTitle=Oracle Forms - Timeout PJC
    form=timeout.fmx
    imagebase=codebase
    #height=520
    #width=690
    MY REGEDIT OF FORMSBUILDER_CLASSPATH_ is as follow:
    d:\DevSuiteHome_1\forms\java\frmbld.jar;d:\DevSuiteHome_1\jlib\importer.jar;d:\DevSuiteHome_1\jlib\debugger.jar;d:\DevSuiteHome_1\jlib\utj.jar;d:\DevSuiteHome_1\jlib\dfc.jar;d:\DevSuiteHome_1\jlib\help4.jar;d:\DevSuiteHome_1\jlib\oracle_ice.jar;d:\DevSuiteHome_1\jlib\jewt4.jar;d:\DevSuiteHome_1\jlib\ewt3.jar;d:\DevSuiteHome_1\jlib\share.jar;d:\DevSuiteHome_1\forms\java\frmwebutil.jar;d:\DevSuiteHome_1\forms\java\frmall.jar;D:\DevSuiteHome_1\forms\oracle\forms\demos\bigraph\FormsGraph.jar;D:\DevSuiteHome_1\LIB\xmlparserv2.jar;D:\DevSuiteHome_1\jlib\bigraphbean.jar;D:\DevSuiteHome_1\jlib\bigraphbean-nls.zip;D:\DevSuiteHome_1\jlib\jewt4.jar;D:\DevSuiteHome_1\jlib\LW_PfjBean.jar;D:\DevSuiteHome_1\jlib\share.jar
    Once again I insist that I had followed demos instruction, all readme and install guide . Here in my company I am using ORACLE 10G FORMS on my machine and ORACLE 10G database server installed on other server . Moreover this softwares are original license software .
    Regards,
    Prashant

  • How to create different Graphs in SharePoint 2013 without using Excel service?

    Hi All,
    I want to create different graphs in SharePoint without using Excel Service.
    I do not want to create excel and then upload that to SharePoint.
    Any one knows how to do that? Isthere any option to do that?
    Thanks in Advance

    Hi Darsh,
    You can use
    SharePoint chart webpart to display charts. Or you can use any jQuery charting library and feed data using JSOM or REST. Ex. high charts:
    http://www.highcharts.com/products/highcharts
    http://office.microsoft.com/en-us/sharepoint-server-help/sharepoint-lists-vi-exciting-ways-to-display-your-list-data-RZ102425636.aspx?section=3
    Best Regards,
    Brij K

  • How do you create a graph in the blueprint of solution manager?

    Hi,
    Does anyone know how to create a graph in the blueprint of solution manager?

    Is a graphic, i´m gonna to summarize you in a chart what i´m doing ....i hope you understand and can help me....
    i sinchroniced Solution Manager with Aris for Netweaver and i want to see the graphics that
    were created in ARIS for netweaver in Solution Manager but can not be .
    I have been researching and not have to see if the Web service??
    Thanks!!!
    Edited by: Mariana Lavastida on Aug 14, 2008 2:33 AM

  • How to create multiple graphs ( more than 10 ) in report builder 10g

    Hi All ,
    I have a requirement to create approx 10 graph . I have created 4 graphs in paper layout 1st section ,while moving to 2nd section in paper layout for plotting the next graph ,its giving an error "REP-1212 : Object 'M_1' is not fully enclosed by its enclosing object Body " .
    Please help me ,if you have any idea to create multiple graph .
    Thanks
    B. Mohapatra

    This is a layout error message. I don't think it has anything to do with multiple graphs.
    Your object M_1 just gets too big:
    Cause: An object is not fully enclosed by the page. That is, the object extends beyond the page boundary.
    Action: Move or resize the object so that it does not extend outside the page boundary. Alternatively, increase the page size in the Report property palette.

  • How to create a graph in ADF Faces

    Hi there,
    I am working with ADF using JDeveloper 10.1.3 with Business Components (BC) and ADF Faces.
    I am trying to create a graph base on a View object, but I can't see any options on the Data Control Palette.
    Is there a graph wizard component for ADF Faces?
    Thanks for any help.
    Jim

    Thanks Frank.
    A graph was created successfully using the following steps:
    1. using BIGraphDef1.xml (with Oracle BI Graph library)
    2. add to pageDef.xml
    <iterator id="EmployeesView1Iterator" RangeSize="10" Binds="EmployeesView1"
    DataControl="AppModuleDataControl"/>
    <graph id="pageGraphid"
    IterBinding="EmployeesView1Iterator"
    ControlClass="oracle.dss.graph.Graph" SeriesLabel="EmployeeId"
    GraphPropertiesFileName="view.BIGraphDef1"
    SeriesType="SINGLE_SERIES">
    <AttrNames>
    <Item Value="Salary"/>
    </AttrNames>
    </graph>
    3. add to .jspx (with Graph 1.0 as library )
    <h:form>
    <af:panelGroup>
    <f:verbatim>
    <graph:Graph imageHeight="300" imageWidth="500" data="${bindings.pageGraphid}"/>
    </f:verbatim>
    </af:panelGroup>
    </h:form>
    4. add to web.xml
    <servlet>
    <servlet-name>GraphGeneratorServlet</servlet-name>
    <servlet-class>oracle.jbo.html.jsp.graph.GraphGeneratorServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>GraphGeneratorServlet</servlet-name>
    <url-pattern>/faces/jspx/GraphGeneratorServlet</url-pattern>
    </servlet-mapping>
    Jim

  • Jdeveloper 11.1.2.3.0 cannot create ADF graph

    Hi,
    I am new to ADF. I create a Java EE Web Application and EJB Diagram (JPA/EJB 3.0) as the demo shows( http://download.oracle.com/otn_hosted_doc/jdeveloper/11gdemos/JDevExperience/JDevExperience112flv.html). But when I try to create a graph, I cannot find the selection. Now I do not know why this probelm exist. Please help me. Thank you.
    Sheng

    Hi,
    Always mention your JDev version (check out this announcement : https://forums.oracle.com/forums/ann.jspa?annID=56).
    Can you check out the ViewController project properties and see if the ADF Data Visualization library added under JSP Tag Libraries section? If not, try adding it and see if it resolves the issue.
    -Arun

  • I want to create three graphs in web template

    dear all
    I want to create three graphs in web template
    the graphs's type is lines
    top 1 and worst 3 will display in graph
    first is seven days data
    second is seven weeks data
    last is six months data
    how to create those
    pls give me some advice
    thanks

    Lemine,
    Basically you have two major steps:
    1.you need to create the corresponding queries (with conditions on the key figures) in the Query Designer.
    2. Open the Web Application designer and create three charts, set their properties, then drag them to the template , and finally link them to the corresponding queries/views.
    More information on WAD can be found at: http://help.sap.com/saphelp_nw04/helpdata/en/a9/71563c3f65b318e10000000a114084/content.htm
    Hope it helps,
    Xibi

  • Need to create a graph that will chanrt either monthy quarterly or annual

    I need to create a graph which will display in a workbook.  I need to be able to somehow have the user pick monthly querterly or annual graphing.  How do I do this this?  do I create this selection in the query intself?

    I think the only way is to do that in the query.
    Another way shoul be to have all the info in the query and build 3 graph.
    Hope it helps.
    Regards

  • Creating a graph with 2 Axis

    Post Author: KatyLu
    CA Forum: Xcelsius and Live Office
    I am really struggling with how to create a graph with 2 Axises.  I have changed my Excel sheet around numerous ways and am unable to get it to work for me, does anyone have any insight on how I can make this work, I reaaaalllyyy need it for an upcoming presentation!!! Help!

    Post Author: KatyLu
    CA Forum: Xcelsius and Live Office
    Sorry if I confused...I am needing to create a graph with scales on both sides.  For example, revenue would be on the scale on the left and headcount needed to generate the revenue would be on the right scale.  Revenue scale would be between 1M and 6M, headcount scale would be in the hundreds, does this help describe what I am trying to do?  I used the Combination Chart in xcelsius and when I try to set the scale range for the x-axis minimum and maximum it is grayed out... Any help would be greatly appreciated.

  • How to create statistical graph?

    Could any of you give me some suggestion on how to create statistical graph (line)?
    Is there any documentation or reference about this?
    Thank you so much for your help.

    I would like to create a chart using swing.
    The chart is a line plot and it should be able to be printed.
    Could you give me some suggestion?
    Thank you very much.

  • How to create a F4 help for a report selection screen field

    hi,
    can any one guide me to create F4 help for a field in a selection screen in a report program,plz give me a sample code

    hi,
    Here are the following ways
    1.with the help of match code objects we can create the F4 Functionality for Field.
    Syntax is :
    PARAMETERS: p_org LIKE t527x-orgeh MATCHCODE OBJECT zorg.
    2. One more thing is we can do it with Search Help's also.
    3. Even we can do it HELP Views also.
    Help Views:
    You have to create a help view if a view with outer join is needed as selection method of a search help
    The selection method of a search help is either a table or a view. If you have to select data from several tables for the search help, you should generally use a database view as selection method. However, a database view always implements an inner join. If you need a view with outer join for the data selection, you have to use a help view as selection method.
    All the tables included in a help view must be linked with foreign keys. Only foreign keys that have certain attributes can be used here. The first table to be inserted in the help view is called the primary table of the help view. The tables added to this primary table with foreign keys are called secondary tables.
    The functionality of a help view has changed significantly between Release 3.0 and Release 4.0. In Release 3.0, a help view was automatically displayed for the input help (F4 help) for all the fields that were checked against the primary table of the help view. This is no longer the case in Release 4.0.
    As of Release 4.0, you must explicitly create a search help that must be linked with the fields for which it is offered (see Linking Search Helps with Screen Fields ).
    Existing help views are automatically migrated to search helps when you upgrade to a release higher than 4.0.
    A help view implements an outer join, i.e. all the contents of the primary table of the help view are always displayed. You therefore should not formulate a selection condition for fields in one of the secondary tables of the help view. If records of these secondary tables cannot be read as a result of this selection condition, the contents of the corresponding fields of the secondary table are displayed with initial value.
    <REMOVED BY MODERATOR>
    Edited by: Alvaro Tejada Galindo on Feb 15, 2008 3:15 PM

  • How to create ONE graph with a growth trend ($ and %)?

    I would like to create a graph with a growth trend.
    The graph should have figures on one side reflecting $ values and on the other % growth.
    I cannot make a trend on the same graph and usually spend ages adding another graph to show the trend. I end up making 2 graphs instead of one.
    Please refer to the following really basic graph that will give you an idea.
    ex : http://www.tellurideareahomes.com/images/graph1.jpg
    Can anyone show how to do that?

    What you want requires a bit of trickery.
    Chart the bar graph
    Chart the trend
    then move the trend one above the bar one after setting its background to none.
    If this workaround is not OK for you,
    _Go to "Provide Numbers Feedback" in the "Numbers" menu_, describe what you wish.
    Then, cross your fingers, and wait _at least_ for iWork'09 (possibly for iWork '99)
    Yvan KOENIG (from FRANCE mercredi 19 novembre 2008 11:18:45)

  • How to create weighted graph using as 3.0

    Hello Frnds,
    I want to create weighted graph using AS. Using
    flash.graphics.* package I can create edges and nodes but I dont
    knw how to assign weight to the edges. I am also facing one issue,
    our client has created some legacy classes for graph generation,
    how can I create a similar class in AS.
    Regards,
    FlexBee...

    Hi,
    can anyone tell me about weighted graph...??

  • How to create a graph for the exact values in pivot table

    hi all,
    how can i create a graph exactly that shows pivoted values. i created one pivot table and deleted the table view. when i am creating the graph it is not showing the graph for pivot table values.

    for that you need to edit the pivot table properties and then select graph pivot results tab in the top middle .. hope this helps

Maybe you are looking for