Weather forecast in dvt graph

Hi!!
I am using jdeveloper 11.1.1.5
I need to show the weather forecast information in dvt graph which should be updatable.
Could any one pls help me!!

Sorry jhon!!
+Where do you get the weather forecast from?+I need to get the weather forecast from any sites.,
For Eg: Many websites like yahoo!! tey are giving an updatable weather forecast similar to that
To be more clear.
While we are using Geographical map we are giving some location URL so that the map renders
+How do you want to display the forecast?+I need to display the weather forecast in dvt: Graph [Line]
If there is any better UI Components other than graph. please provide it also
+You want the weather forecast to be up-datable? What do you mean by that - the user updates the weather forecast?+No User will update the weather forecast
Hope i am clear.,
To be more clear., If there any solution on how to access the weather forecast pls provide me.,

Similar Messages

  • My weather forecast does not work!

    My weather forecast does not work, the animation background catching this.
    This equals the image of the print, it does not move.

    Try:
    - Reset the iOS device. Nothing will be lost      
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings                 
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                               
    iOS: Back up and restore your iOS device with iCloud or iTunes
    - Restore to factory settings/new iOS device.                       

  • Weather forecast in notification center

    Hello,
    In Yosemite (on my MBP early 2008), the town of the weather forecast (with an arrow pointing to north east) is not my actual residence, but a previous one. Yet in Maps or in Date & Time pref panel, the location service works properly. It's strange because in the notification center, the text with details of the forecast matches my actual residence, but the icon with the arrow gives the town of my ancient place.
    How can I correct that ? Thanks.

    Problem solved : I have put the folder ~/Library/Containers/com.apple.ncplugin.weather to the trash. It has been automatically recreated and the city of the meteo is now correct.

  • Error when displaying 2 DVT Graph in same page

    Hi,
    I am using jdev 11g.
    I have a sample page with 2 graph on it. When the page is displayed only one graph is shown.
    <af:form>
    <dvt:graph id="p102" binding="#{TestManagerBean.myGraph}"
    graphType="#{TestManagerBean.graphType}" threeDEffect="true"
    shortDesc="graph pie" contentDelivery="immediate"
    annotationsVisibility="SHOW_ALL" animationIndicators="ALL"
    animationOnDataChange="AUTO" animationOnDisplay="AUTO"
    markerTooltipType="MTT_VALUES"
    noDataErrorText="No Data Found"
    inlineStyle="width: 400px;height: 300px;">
    </dvt:graph>
    <dvt:graph id="p1022" binding="#{TestManagerBean.myGraph}"
    graphType="#{TestManagerBean.graphType}" threeDEffect="true"
    shortDesc="graph pie" contentDelivery="immediate"
    annotationsVisibility="SHOW_ALL" animationIndicators="ALL"
    animationOnDataChange="AUTO" animationOnDisplay="AUTO"
    markerTooltipType="MTT_VALUES"
    noDataErrorText="No Data Found"
    inlineStyle="width: 400px;height: 300px;">
    </dvt:graph>
    </af:form>
    Kindly advice
    Emile BITAR

    Hi Emile BITAR,
    binding="#{TestManagerBean.myGraph}"Have you tried creating separate bindings for each of the graph?
    Regards,
    Chan Kelwin

  • How can I cache dvt graph results?

    Hello colleagues, I need some help regarding dvt graphs performance.
    In our application we have big amount of data which the user can filter by adding grouping options, time ranges, etc. For the graph to be updated (the query to be re-executed), the user has to press a "Refresh" button each time he changes the query parameters.
    Once the new results are displayed in the graph, the user can change the graph type by pressing either a pie, bar, line or table buttons. As a consequence of this, the query is re-executed and returns the same previous results. This obviously drops the performance of the application.
    So, how we can manage to refresh the type of graph (for example from pie to bar) without re-executing the query. Note that the "Refresh" button should always re-execute the query even if the parameters were not changed.
    I'll appreciate your help.
    Regards,
    Nicolas
    Edited by: 864814 on Oct 14, 2011 6:05 AM

    And by the way how are you switching the graph type? Are you using an af:graph tag and switching just the type? Or are you rendering a complete new graph on your page?

  • Bug in dvt:graph tag? Cannot set graphType attribute using EL expression

    Dear all,
    First thing sorry if this is not the correct forum, but I have a problem that is driving me crazy with ADF DVT tags in JDeveloper environment.
    I'm working with DVT tags to display some graphs in my application. I need to decide at runtime the type of graph I'm going to render in my page, because the type of graph is stored in a database. Also, I use tabular data instead of Data controls, because I have to reuse POJO objects from an existing model tier.
    I have seen that you can bind the graphType attribute of <dvt:graph to a backing bean property, as explained in : http://www.oracle.com/technology/products/jdev/11/how-tos/dvt_how_tos/adf_dvt_graph_howto.html. You can even change the type dynamically responding to user actions, ie : you can change for example from BARS to AREAS or whathever. So far so good, the problem is that I have tried the simplest example possible and it seems that I cannot bind the graphType attribute to a backing bean property using an EL expression.
    In my example, the backing bean has a type property with fixed value AREA_VERT_ABS, but it renders as a BAR_VERT_CUST, that is to say, it completely ignores the binding for the graphType attribute, but the binding for the tabularData attribute works properly because it renders the dummy data provided. I have tried with other types of graphic and it always renders as BAR_VERT_CUST.
    I'm working with JSF 1.2 + Facelets + JDeveloper 11.1.1.2.0 and the integrated weblogic server.
    My page is a facelet page as follows :
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <f:view xmlns="http://www.w3.org/1999/xhtml"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:dvt="http://xmlns.oracle.com/dss/trinidad/faces">
    <af:document id="d1">
    <af:form id="f1">
    <dvt:graph id="g1" graphType="#{graphBean.type}" tabularData="#{graphBean.tabularData}" >
    </dvt:graph>
    </af:form>
    </af:document>
    </f:view>
    My backing bean :
    public class GraphBean {
    private String type = "AREA_VERT_ABS";
    public GraphBean() {      }
    public String getType() {
    return type;
    public List getTabularData() { // here I return a hardcoded list that is properly displayed ///
    Note : the sam page but changing #{graphBean.type}" by "AREA_VERT_ABS" renders properly :
    <dvt:graph id="g1" graphType="AREA_VERT_ABS" tabularData="#{graphBean.tabularData}" >
    </dvt:graph>
    Any advice will be very much appreciated.
    Thanks and regards,
    Plan.

    Hello,
    Actually the setter is not needed because the tag only reads, but it does not update the backing bean.
    Anyway for verification pourposes I have changed to the following version without results.
    Anyone from Oracle could give me some light ?
    public class GraphBean {
    private String type = "AREA_VERT_ABS";
    public GraphBean() {      
    public void setType(String type) {
    this.type = type;
    public String getType() {
    return type;
    }

  • How do I change the Weather forecast to local Uk postcode

    I have just downloaded Firefox, and am having difficulty in customizing the home page. How can I get the weather forecast for my area of U.K. - I don't need to know about New York

    SergZak wrote:
    I do. Who uses Centigrade in Los Angeles? (that's where I am as well)
    Well, in fact, I do. I use metric 24/7, because in my business, everything is done with metric. Since 90% of the world uses metric, it seems ridiculous to pander to individuals who refuse to enter the 20th Century (let alone the 21st Century).

  • Advanced dvt:graph customisation

    Hi,
    I need to make the following changes on a dvt:graph ( graphType="PIE" ) but I don't see how I could do it.
    1- Set the font for the Title, Subtitle, Footnote and legend elements
    2- Avoid truncating the Subtitle when its too long
    3- Set the space before and after the pie ( after the subtitle and before the legend )
    4- Completely hide the label under the pie ( data label )
    I know there is also a "advancedPropertiesXML" on the dvt:pieGraph but I can't find any example for that.
    Is it possible to do that?
    Thanks

    Hi,
    We are working on exposing the pie label as a child tag, but in your current build you will have to set it via the other properties XML or via Graph Java API.
    Here as an example of binding the whole graph. this would be the code in your backing bean:
    public UIGraph getMyGraph() {
    if (m_graph == null) {
    m_graph = new UIGraph();
    CommonGraph graph = (CommonGraph)m_graph.getImageView();
    // Customize the Pie label
    String pieLabel = "<Graph version=\"11.1.1.0\"><PieLabel>" +
    "<GraphFont size=\"16\" /></PieLabel></Graph>";
    m_graph.setOtherProperties(pieLabel);
    return m_graph;
    In your jspx page:
    <dvt graph ...
    binding="#{MyBean.myGraph}"
    </dvt:graph>
    Or, you can bind only the otherProperties property in the backing bean.
    Hope this helps
    Katia

  • Dvt:Graph How to define own Style Rule Bundle

    Hi,
    I need help in defining style rule bundle in the backing bean to be used in the styleRuleBundle tag of dvt:graph
    say for example I nee need to define the follwing rule...
    All data value points below 50 should display in green
    from 50-80 it should be yellow and 80-100 must be red in colour...
    regards

    Add to your resource bundle:
    af_dvt_hv.fetchingData=Your textDario

  • How to change series/groups of a DVT graph at runtime?

    With my scenario, I would like to bind a graph with a dynamic query. "Dynamic" means the query constructed at runtime. So I want to detrmine the series and groups of a DVT graph at runtime. I.e., I want to do this with Java programatically.
    I read some articles and tutorials but have not found a topic on this. I think this should be a common requirement. Anyone can tell me how to do this? Thanks.

    Are you using ADF BC and data binding or regular JSF binding?
    For the first one you can try and create a VO with columns a,b and then at runtime change the VO definition similar to how it is done here:
    http://blogs.oracle.com/shay/2010/10/adf_faces_dynamic_tags_-fora.html
    (but keeping the synonyms for the columns constant).
    For case B - you just need to change the collection data that you pass to the graph.

  • DVT: Graph - Issues with Automatic Sizing Inside PanelDashboard

    Hello. To start off, here is the background information:
    JDeveloper Version: Studio Edition Version 11.1.2.2.0, Build JDEVADF_11.1.2.2.0_GENERIC_120418.2212.6183.1
    WebLogic Version: JDeveloper built-in version
    Error messages received: None
    We have developed a DashboardAPI for internal use at my company that is largely based off of the example provided on the ADF Demo page:
    http://jdevadf.oracle.com/adf-richclient-demo/faces/visualDesigns/dashboard.jspx
    We have also implemented the minimize and maximize functionality as it exists in the demo. However, in all of your dashboard panel boxes, we have a dvt:Graph component as the direct child. The inline style for all dvt:graphs is "width:100%; height:100%;". The actual flash component for the dvt:graph appears to be completely stretched when the page is first rendered. You can tell this by right clicking on the graph component and selected the Flash settings; by doing this, the entire flash component becomes "grayed out". This is where you can see this. Now if you minimize the graph to the dock bar, then restore it, the panel box comes back, but the dvt:Graph "rerenders", and stretches even further to completely fill out the entire panel box. I'm trying to figure out why it would behave like this. The only difference I see is that while restoring the panel boxes from the "dock", the code performs a prepareOptimizedEncodingOfInsertedChild(), instead of when the dashboard is initially created upon first load by creating the graph components programatically and adding them directly to dashboard.getChildren().
    I have included two links to screenshots showing the before minimize and after minimize to illustrate what I mean:
    Before: http://www.flickr.com/photos/60499750@N05/8534801846/
    After: http://www.flickr.com/photos/60499750@N05/8534801824/
    Does anyone have any idea why this would happen?
    Thanks

    No ideas on this one? Maybe just point me in the right direction, something I can debug or look at? Anything would be greatly appreciated.
    Thanks

  • [BUG?] inlineStyle="height:100%;" doesn't work for dvt:graph with firefox

    Hi,
    Using TP4 with Firefox 2.
    Have dvt:graph with dynamicResize="DYNAMIC_SIZE" and following inlineStyle:
    inlineStyle="width:100%;height:200px;" --> This works as expected and width of graph is resized when I resize the browser window.
    inlineStyle="width:100%;height:100%;" --> At runtime the browser window is empty.
    inlineStyle="width:200px;height:100%;" --> At runtime the browser window is empty.
    Here the full code:
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
              xmlns:dvt="http://xmlns.oracle.com/dss/adf/faces">
      <jsp:directive.page contentType="text/html;charset=windows-1252"/>
      <f:view>
        <af:document binding="#{backing_graph.document1}" id="document1">
          <af:messages binding="#{backing_graph.messages1}" id="messages1"/>
          <af:form binding="#{backing_graph.form1}" id="form1">
            <dvt:graph id="graph1" value="#{bindings.PhoTestView11.graphModel}"
                       binding="#{backing_graph.graph1}"
                       clickListener="#{backing_graph.processClick}"
                       dynamicResize="DYNAMIC_SIZE"
                       inlineStyle="width:200px;height:100%;"/>
          </af:form>
        </af:document>
      </f:view>
      <!--oracle-jdev-comment:auto-binding-backing-bean-name:backing_graph-->
    </jsp:root>regards
    Peter

    Hello Frank,
    It's an FF (tested with 2.0.0.16 and 3.0.1) specific problem. With IE7 it works as expected.
    regards
    Peter

  • ADF DVT graphs drillAction

    I am following the link to eanble drilling in my ADF DVT graphs - http://download.oracle.com/docs/cd/E12839_01/apirefs.1111/e12418/tagdoc/dvt_graph.html
    It describes DrillActions as
    drillAction String Yes Refers to a backing bean method. The method will be processed when a label slice on an axis is drilled.
    1) How to make the label slices drillable?
    I am using a data control to plot my graph.
    I have added drillingEnabled, and drill listeners to my code as follows, but its not working
    <dvt:graph shortDesc="Graph" id="g1" value="#{bindings.EmpGrpViewObj1.graphModel}"
    drillingEnabled="true"
    drillRequestingListener="#{pageFlowScope.backing_test.onClickDrill}"
    drillRequestedListener="#{pageFlowScope.backing_test.onClickDrill1}"
    animationOnDisplay="auto" animationOnDataChange="alphaFade"
    />
    Also I am follwoing link - http://download.oracle.com/docs/cd/E12839_01/apirefs.1111/e12418/tagdoc/dvt_pivotTable.html
    which says Drill operation is available only when underlying data control supports it. Does same applies for graph as well? I mean, if datacontrol used to define graph, then it should support drill operation. How to make data control to support drill action for graphs?

    some comments floating here
    Drilldown in ADF DVT charts using data control

  • Where do I find all explanations of Weather Forecast (app) Symbols??

    Where do I find all explanations of Weather Forecast (app) Symbols??
    thanks!!

    If it's a third party app, best place to check will be the developer's website - have you tried that?
    If you need help with that, please post a link to their website or the direct link in the app store.

  • Why not work [timeSelectorListener]  at [dvt:graph] (version 11g)

    I am practicing ADF Data Visualization sample
    written by Katarina Obradovic-Sarkic.
    http://www.oracle.com/technology/products/jdev/11/how-tos/dvt_how_tos/adf_dvt_graph_howto.html
    I cant' show the TimeSelector in the Graph.
    [ richGraphTimeSelector.jspx ]
    <dvt:graph id="master" value="#{bindings.SRsByDate1.graphModel}"
    graphType="LINE_VERT_ABS" stylePath="Comet"
    imageFormat="FLASH" threeDEffect="false"
    timeSelectorListener="#{sampleGraph.processTimeSelector}"
    clickListener="#{sampleGraph.processClick}" >
    [SampleGrpah.java]
    public void processTimeSelector(TimeSelectorEvent event)
    throws AbortProcessingException, SQLException {
    Date sdate = new Date(event.getStartTime());
    Date edate = new Date(event.getEndTime());
    oracle.jbo.domain.Date startDate = new oracle.jbo.domain.Date(sdate );
    oracle.jbo.domain.Date endDate = new oracle.jbo.domain.Date(edate);
    JUCtrlAttrsBinding sd = (JUCtrlAttrsBinding)_bindings.get("start_date");
    JUCtrlAttrsBinding ed = (JUCtrlAttrsBinding)_bindings.get("end_date");
    sd.setInputValue(startDate);
    ed.setInputValue(endDate);
    try {
    JUCtrlActionBinding actionBinding =
    (JUCtrlActionBinding) _bindings.get("ExecuteWithParams1");
    actionBinding.execute();
    } catch(Exception e) {
    System.out.println("Error executing the binding with new dates: " + e);
    I don't understand why not cursor to enter the "processTimeSelector" function,
    even though I have breakpointed into first line of this function.
    Could anybody help me in this problem?

    Check to see that your little one did not by accident get something (anything) in the headphone jack.  If there is debris in there (and it doesn't take much) it will make your device think a set of headphones is jacked in and you won't be able to hear through speakerphone or handset.
    While holding it with the jack down, blow across the jack and tap gently.  It often will dislodge whatever is in there. 
    Наглый пес! Вы должны быть благодарны мы даем Вам возможность проживать в нашем мире!
    BB 9550 Verizon OS 5.0.0.1015 My Storm My Blackberry My Lifeline
    If there is a Theme on my Blackberry, Hedone it!
    If someone successfully helped you with an issue, say thank you by clicking "kudos" in their post and clicking the star.
    Antiquis temporibus, nati tibi similes in rupibus ventosissimis exponebantur ad necem
    If your issue has been solved, please mark the post that solved it for you!

Maybe you are looking for