Chart Wizard Bugs

1. If I set ONE of the chart series data label to "none" or
"value" sometimes it affects ALL chart series. It seems like it's
an all or nothing deal.
2. In the advanced mode in Query Builder, there is an option
to set the "variable containing query object". This does not work.
I have tried to set this several times and clicked Save, only to go
back and its reset back to "CFReportDataQuery".
3. Under the Lines and Markers tab in the chart wizard, there
is an option to set the maximum Y axis value. Setting this has no
effect. The chart still does what it wants.
I find *very little* support for the chart wizard. I know
this is a new thing and I'm hoping in the next update these issues
will be fixed. But in the mean time, has anyone else found a way
around this besides creating the chart manually?

Hi Ingo,
Pls. see my responses below.
1) How can I achieve, that the chart only shows one key figure? I would like to choose either the first or the second one.
Answer:In the properties of the chart you have a list of "Series" option, you can set the Series 1 or Series 2 as Hidden.Hence u can achieve to show only one key figure.
2) What is the meaning in the chart wizard (Step 2) of "Select a Data Source". Then I can count up or down - what's the sense?
Answer:I didnt get this.can you please elaborate this a bit more.
hope it helps,
regards,
Parth.

Similar Messages

  • Why can't i find chart wizard in form developer 9i?

    I download the lastest version of Oracle9i Developer Suite from otn.it include the forms developer,report developer,designer, and so on.
    but when i use the forms developer shiped with this Developer Suite, I can't find the chart wizard in the "tools" menu and anywhere otherwise.I also can't find graphics designer also.
    But i need use them in my forms. Who can tell me how i can get them ? Thanks!

    Please read the Forms Upgrade Reference at http://otn.oracle.com/products/forms/pdf/forms_upgrade_reference.pdf
    You will see that you can still use Graphics from the 6i version.
    You might be interested to check out the BI Beans integration demo that comes as part of the extension pack to the Oracle9i Forms demos at: http://otn.oracle.com/sample_code/products/forms/

  • Having trouble formatting excel chart using Chart Wizard command.

    Problem Description :
    Trying to create an excel chart derived from an excel spreadsheet. Having trouble understanding the parameters to format in the Chart Wizard function to get the desired results. There are no error messages, just chart is not what expected.
    Goal:
    Chart with temperature on the left, y-axis. 3 lines on the graph for min meas temp, avg meas temp, max meas temp.
    Bottom x-axis should contain year/month values.
    Chart Wizard command:
    status = ExcelRpt_ChartWizard (chart_temperature_handle, chart_data_worksheet_handle, D1:G3, ExRConst_GalleryLine, ExRConst_Rows, 0, 0, 0, 1, "Temperature Stats", "Year/Month", "Temp F", NULL)
    NI Software : LabWindows/CVI version 8.0.1
    NI Hardware : None device
    Driver Version :
    OS : Windows XP
    Customer Information :
    Mary Claflin
    Technology Kitchen Corporation
    US
    [email protected]
    Ph: (512) 965-4722

    Hi Mary,
    Looking at the Chart Wizard within Excel, it appears as though the only
    chart type that allows us to give a series of values for our XAxis
    would be the XY Scatter plot. There IS an option for this when using
    the CVI Excel Report function calls (specifying
    ExRConst_GalleryXYScatter for the plot type).
    However, it appears that there are not any Excel report chart functions
    available in CVI to specify anything other than the general "series"
    object. When this object is sent through as a variant data type to
    Excel, Excel appears to automatically convert this single object into
    separate data series. This is because Excel is not immediately aware
    that we are attempting to use a Scatter plot, and thus must convert
    each column into a separate series. There is no object defined in the
    Excel report that would be able to handle the "Xseries" and "Yseries"
    option that are seen in the chart creation wizard within Excel. Thus,
    we have no way of specifying a different set of data for our XAxis.
    It appears as though, at least for our own CVI functions, that there is
    no way to accomplish your goal. Since CVI is based around C - we CAN
    call any ActiveX client registered on the system. Because of this, we
    should be able to talk with Excel directly without the help of the CVI
    Excel Report functions, although this may be more difficult.
    I haven't been able to find any specific C example code, but here is
    the Excel Object Model on which calls to Excel will most likely be
    based:
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dv_wrcore/html/wrconexcelobjectmodeloverview.asp
    Sorry for the inconvenience Mary.
    Dan Weiland

  • Line Chart creation bug?

    In HTML DB release 1.6.0.00.87 when I create a new line chart for some reason the Application Builder brings in copies of all the series from all my other line charts in the application. So each time I create a new line chart I have to delete all the additional series the Builder added.
    Is this a bug? If so, is it fixed in release 2.0?

    I just created a line chart and, under Build In, I don't see a "grow" option. Are you using Keynote '09?

  • Wizard bug - conditional validation

    Hello,
    We require validation on a wizard to prevent the user from navigating from a particular page to the next page unless they have checked a checkbox. The underlying column is not mandatory because the user may not have to visit this particular page depending on the answers he gave on previous pages.
    The only place we have found to put the validation is the "nextActionListener" of the singleStepButtonBar. However, there seems to be a bug in the generator because we cannot override the WizardPageContent template at the ItemRegion level. We only want the validation to fire if the user is in this particular page, so modifying the template at the Group level is not appropriate. As a result we have to make a post-generation change. Can anyone suggest another way of achieving this?
    thanks,
    Michael

    Steven,
    Sorry to be still bugging you about this but I'm still having problems getting it working OK. The first problem was that the error message was being added to the page 4 times (presumably one for each step). I see in the checkFocusRowIndex method of the WizardProcessModel does a check to see if the page has changed so figured I may have to do something similar. As a work around I check the FacesContext to see if any error messages have been added already and don't add it again. That much worked but I now have the problem that the error message is being displayed on the second wizard page as well. Here is my getNextAction()
        public String getNextAction()
           String nextAction = super.getNextAction();
           FacesMessage.Severity sev =  FacesContext.getCurrentInstance().getMaximumSeverity();     
           if (JsfUtils.getFacesContext().getViewRoot().getViewId().equals("/pages/GHDScreeningStart.jspx")
               && nextAction.equals("WizardGHDScreeningSubjectDetails")) {
               // Getting ready to move to second page.  Need to check that on
               // the current page, both checkboxes are ticked
                boolean inclusionCriteria = ((Boolean)JsfUtils.getExpressionValue
                        ("#{bindings.GHDScreeningInclusionCriteriaMet.inputValue}"))
                        .booleanValue();                  
                boolean exclusionCriteria = ((Boolean)JsfUtils.getExpressionValue
                        ("#{bindings.GHDScreeningExclusionCrirteriaNotMet.inputValue}"))
                        .booleanValue();
                if (!(inclusionCriteria && exclusionCriteria)) {
                    if (sev == null) {
                      JsfUtils.getInstance().addError("SCREEN_WIZARD_CHECKBOX_FAILURE");
                    // Stay on same page
                    return null;
           return nextAction;
        }I'd really appreciate some more help/guidance here !
    Cheers,
    Brent

  • ViewLink wizard bug

    Trying to create a view link based on a many-to-many association where the destination entity is also the destination in another association.
    After selecting the association on the Source Attributes step, the Destination Attributes step does not automatically reflect the selected association. I have to explicitly select the association again. Now, on the View Link SQL step, the query does not include the Intersection Entity object, just a direct join between the source and destination entity objects.
    When there is no ambigutiy on the Destination Attributes step, i.e. there is only one association to select (the one that was selected on the Source Attributes tab), the Link SQL step correctly reflects the Intersection Entity object in the Query Clause preview.
    Is this a bug in version 9.0.2.8.2 (BC4J 9.0.2.7.99)
    Also, are there BC4J patches that will be delivered separately from a new version of JDeveloper?
    Thanks.

    Trying to create a view link based on a many-to-many association where the destination entity is also the destination in another association.
    After selecting the association on the Source Attributes step, the Destination Attributes step does not automatically reflect the selected association. I have to explicitly select the association again. Now, on the View Link SQL step, the query does not include the Intersection Entity object, just a direct join between the source and destination entity objects.
    When there is no ambigutiy on the Destination Attributes step, i.e. there is only one association to select (the one that was selected on the Source Attributes tab), the Link SQL step correctly reflects the Intersection Entity object in the Query Clause preview.
    Is this a bug in version 9.0.2.8.2 (BC4J 9.0.2.7.99)Sounds like it from your description. The wizard should automatically fill in the intersection info if you picked the many-to-many association end to pariticipate in the ViewLink.

  • EJB WIzard Bugs

    There seem to be several bugs in the EJB wizard:
    1. If I change various fields to not be primary keys, sometimes this does not affect the generated PK class consistently (I have seen a couple of cases where the old or older versions of the constructor are present with fields that used to be primary keys still there).
    2. When I change method names, the "Create Sample Java Client" still uses the old names (or the field names, same thing) for accessors instead of the new method names.
    3. When using the "Create CMP from table" -- why does it ignore data types? Why not ask what are the primary keys?
    Finally, the documentation on running using the internal OC4j OAS should tell users to start the server first by doing a run on the ejb object before trying to run the generated test program (or any other client).
    Best,
    Joe McDaniel

    I've the SAME problems and no luck changing our regional settings
    We read it before, in that "French" case, but no luck to us
    Out regional setting is Spanish, nothing works better if we use English
    And why embedded OC4J doesn't create tables for entities in EJB3? It does if we use EJB2.1, but those wizards doesn't works

  • Fx Webservice Introspection wizard bug

    It seems the Fx Webservice Introspection is not interpreting
    the wsdl correctly. By using TCPMonitor I was able to capture my
    soap request from my java spring-ws junit test. The correct
    response is as follows:
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="
    http://schemas.xmlsoap.org/soap/envelope/">
    <SOAP-ENV:Header/>
    <SOAP-ENV:Body>
    <ns4:ProcessChucksPick3LotteryNumberRequest
    xmlns:ns2="
    http://www.chuckspick3.com/WebserviceClient"
    xmlns:ns3="
    http://www.chuckspick3.com/lotterysystem/common-schemas"
    xmlns:ns4="
    http://www.chuckspick3.com/lotterysystem/schemas">
    <ns2:webServiceClient>
    <ns2:id>0</ns2:id>
    <ns2:customerName>test</ns2:customerName>
    <ns2:customerUserName>test</ns2:customerUserName>
    <ns2:custoemrPw>test</ns2:custoemrPw>
    </ns2:webServiceClient>
    <ns3:chucksPick3LotteryNumber>
    <ns3:number>345</ns3:number>
    <ns3:requestDate>2008-10-29T20:32:37.171-05:00</ns3:requestDate>
    <ns3:drawingType>MidDay</ns3:drawingType>
    </ns3:chucksPick3LotteryNumber>
    </ns4:ProcessChucksPick3LotteryNumberRequest>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    Using the code generated from the Fx Webservice Introspection
    wizard I get the following invalid soap request:
    notice that there are no namespaces specified.
    <SOAP-ENV:Envelope>
    <SOAP-ENV:Body>
    <tns:webServiceClient>
    <tns:id>1</tns:id>
    <tns:customerName>test</tns:customerName>
    <tns:customerUserName>test</tns:customerUserName>
    <tns:custoemrPw>test</tns:custoemrPw>
    </tns:webServiceClient>
    <ns0:chucksPick3LotteryNumber>
    <ns0:number>234</ns0:number>
    <ns0:requestDate xsi:nil="true"/>
    <ns0:drawingType>Day</ns0:drawingType>
    <ns0:type>Customer Provided Winning Pick 3 Lottery
    Number</ns0:type>
    </ns0:chucksPick3LotteryNumber>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    I think there is a bug in the code generated from the Fx
    Webservice Introspection wizard. You can download or view my wsdl
    by clicking
    here.
    If this is not a bug, can some one please tell me what I am
    doing wrong.
    I hope someone will respond to this post as I really want to
    use flex for webservices; but have not been successful.
    Thanks!

    Hi Randy,
    This seems to be caused by a missing import in that class.
    Try adding this line on top of the file (next to the other import
    statements) and see if it solves the problem:
    import mx.utils.ObjectProxy;
    This should be fixed in the next release, but if you can file
    a bug and attach the wsdl file so we can reproduce the bug and
    confirm it does not happen anymore it would be very helpful.
    Thanks,
    Cristian

  • N73 Setting Wizard Bug

    i have the latest version of the software version (4.) on the N73 vanilla one.........
    have just notice that there is a bug in the Setting Wizard software when i choose Operator it will detect the operator then it will close down without creat the Access Point that's odd one but if i choose to Cinfigure E.mails in the Setting Wizard it will creat the Access Point but it doesn't have the the old list it has just the gmail i guess and other............. does anybody have the same poroblem too.
    Thanks.

    Hey even I've that exact same problem!
    the moment I installed new firmware in that process it already gave me all the required Settings for my SAUDI ARABIA mobile operator, mobily. And I deleted those settings and tried getting them from the Settings Wizard.. just closes without creating
    Anyways for now you can request the settings online and get it on your N73
    http://europe.nokia.com/link?cid=PLAIN_TEXT_228512
    Nokia 5800 XpressMusic (11) [Product ID: 0559416]
    V 21.0.025 (date: 02-04-2009)
    network: mobily (etihad etisalat)

  • URGENT:Report Wizard Bug or incomplete feature ?

    Hello,
    3.0.7.6.2 NT/SP6, 8.1.6.2 Aix
    I am at a loss to explain this bug, 'cause it is so stupid (excuse my language). Valid Report package, report worked well, with good performance i.e no problems. Made a change to the query (removed one join) and saved the report. Now, my template has reset to the defualt report template, the buttons on the parameter form have disappeared. Also, when I click on edit report link, the report wizard changes the name to the current date. I don't have the faintest idea why this happened. No error messages, nothing.
    I retrieved the previous version, checked the html code added in the adv. formatting. Still nothing.
    Any tips (apart from if it aint broke, don't fix it) ?
    Thanks
    Sanjay

    Sunil,
    it is in 3.0.7.6.2, SQL Report.It happens intemittently, which is why it is difficult to analyze the problem. Some other factors could be a large number of versions of the componenent, large blocks of pl/sql code and length of sql query is long (but below the limit for the textarea). However, I don't see why this would prevent the show_params from executing correctly. Will a null value for a bind variable name cause this behaviour ?
    Sanjay

  • Flash Pie Chart display bugs

    Hello guys! Sorry to disturb you but I'm experiencing strange problems in my application!
    A while ago all my flash charts worked like a charm. Today I discovered, that 3 charts are not displayed anymore.
    Have tried various things to check the reason. The underlying query returns data that can be displayed. Nevertheless, only the legend is shown and not the real chart.
    I treid to reset the xml but it doesn't yield any improvements.
    Do you maybe have a hint for me what could be wrong all the sudden?
    Any help is welcome!
    Regards,
    Sebastian

    Print screen to show? http://www.tinypic.com
    Edit: I can't seem to re-create it in the apex 4.0 trial...try just creating a new graph and see if it works.
    Mike
    Edited by: Dird on Jan 15, 2010 10:13 AM

  • Pie Chart Issue(Bug)

    Hello All,
    In the Pie chart the below data is mapped
    Range    Value
    <6         12
    6-12      23
    >12       15
    But in the preview while mouse over on the pie chart it is not showing the "<6" any time.
    but it is showing ">12"
    The problem with the Symbol "<" .
    Did anybody noticed that.
    Let me know how to solve this one.
    Thanks
    Santhosh V

    Hello David,
    Is that showing correctly in your machine ,How come man,
    Just have look in the samples of the Xcelsius File->Templates->HR->Componsatation ,
    Run that Dashboard in that dashboard observe when ever your changing in the combo box to "Tenure" In the pie chart observe the value  for the "<=25 Years" Label is not showing in the Pie chart when ever the user mouse over on the pie chart.
    Thanks
    Santhosh V

  • Is this a Pie Chart Tooltip bug? (Xcelsius 2008)

    Hi Folks,
    I have a series of pie charts on two different dashboards. Neither of them are displaying percentage of total values, instead I get only the value of the 'slice' in the pie chart.
    Any idea why? I'm nearly sure I was getting % values before.
    Thanks,
    Jeanne

    The application doesn't hang but the TextBlock ends up on top the Button when you set its Text property. That's why you cannot click on the Button.
    If you set the Text property of the TextBlock in the XAML markup you won't be able to click the Button when you run the app because of the same reason:
    <TextBlock x:Name="OutputMsg" Text="sample text"
    Margin="0,200,0,0"
    HorizontalAlignment="Center"
    FontSize="18" />
    The solution is, like you have already discovered, to put the TextBlock in the StackPanel so it ends up
    below the Button and not on top of it in the same Grid.
    Please remember to mark helpful posts as answer to close your threads and then start a new thread if you have a new question.

  • Create JSP Wizard Bug

    JDeveloper 11g does not provide a Create JSP wizard, with a provision to add tag libraries to a JSP page, as JDeveloper 10g does. If tag libraries
    are required, the tag libraries have to be added after creating the jsp page and also the tag library JAR files have to be copied to the WEB-INF/lib directory.

    A project containing JSPs and servlets is a web project. But, the create application wizard does not have the provision to add tag libraries.
    Create application with File>New. Categories>Applications and Items>Generic Application. Specify Application Name in Create Generic Application and Next.
    In Name your Generic project select JSP and Servlets Project technologies. But, tag libraries are not provided.
    Even if the Web Project template is selected, the project does not include the tag library JAR files in the WEB-INF/lib directory. Also if a JSP is added to a Web Project,
    the JSP does not contain the tag library directives.
    The following features are requested to be added:
    1. When a project is created with the Web Project template the WEB-INF/lib directory should contain the tag library JAR files, which are required to run the web application in a server other than the integrated WebLogic server.
    2. When a JSP is added to a Web Project template project the JSP should contain the tag library directives for the tag libraries in the Web Project. Even if the Add Jsp Page option is selected while creating the Web Project, the tag library directives are not added to the JSP page.
    3. The tag libraries should also be available for other project technologies such as JSP and Servlets and JSP for Business Components that may include tag libraries.
    Edited by: dvohra on Nov 12, 2008 1:34 PM

  • JDeveloper 3.1 addin wizard bug

    We've written own WIZARD (ADDIN) to JDEVELOPER. So, in version 3.0 is everything OK, but in version 3.1 offer in menu for running WIZARD is not displayed. Where may be problem?
    Thanks

    There were some minor changes in the Addin API between 3.0 and 3.1.
    The most obvious changes was to context menu items.
    For details, see the updated samples which are part of the CustomAddins located on the JDeveloper page of OTN.
    See for example, file: DumpNode.java.
    In particular, the method contextMenuCreation needs to re-create the context menu item each time.
    Fragment pasted below.
    I hope this helps,
    -John
    public void contextMenuCreation(MenuCategory menuCategory, Context p1) {
    // Remove Menu item unconditionally
    menuMgr.removeMenuItem( ctxMenuItem );
    if ( menuCategory == navCtxMenuCat ) {
    ctxMenuItem = menuMgr.createMenuItem( getMenuLabel(),
    "Context" + getMenuLabel(),
    new DumpNodeHandler( this ));
    menuMgr.insertMenuItem(ctxMenuItem, menuCategory, 0);
    null

Maybe you are looking for