Problem with Graphs

Hi
We are facing  a strange problem with graphs in BeX.
We are making graph on summarized data and storing it in workbooks.The problem im facing is that whenever the query is refreshed the Graph gets scattered.for e.g X axis becomes Y  and things like that,
pls share your experience and a way to fix this problem
JPJP

hi jaya
thanks for your response
i shall try upgrading and also check the note,
Thanks
JP

Similar Messages

  • Problem with graphs on repeating frames

    Is it possible to use graphs showing correct data within repeating frames?
    We experienced problems with graphs within repeating frames, each occurrence of a graph shows the same picture (using data that corresponds to the first frame).
    Tnx in advance.

    Sounds like the source data for the Graph is the wrong Group.
    Dave

  • Performance problem with graphs on Tabs (LV7.1)

    I have huge performance problems in a subsystem using tab controls with graphs on top. The whole thing worked nice, until I record a measurement (abou 10k of double as data displayed on the graph). The win task manager indicates above 50% on both CPUs, the app hangs (or lags), my queues generate timeout messages...
    The graph is located in one of the pages of a tab control. As well are several clusters of config data for the measurement.
    As I said, the problems started, when I put the data of that size on the graph indicator.
    The clusters are some nested typ defs, but it worked with them before, no huge arrays involved. All are bundled in a huge cluster (less than 1 k if saved as xml).
    So I wonder, if the clusters and/or the graphs are the problem PLUS is that problem resolved in current LV-Versions (hoping to get the faster car & and I love the current GUI with tabs)?
    Sorry, can't post the code, but if none of you knows that kind of problems and I can't solve it on my on in an hour or so, I can make some imitation code.
    Felix
    www.aescusoft.de
    My latest community nugget on producer/consumer design
    My current blog: A journey through uml

    How many graphs are you referring to?
    Are they all on your User Interface and running in the UI thread?
    You might want to try putting your graphs in their own threads i.e., called dynamically or otherwise in a structure that allows LabVIEW to put them in their own thread. I've gotten good performance out of a PXI-8106 controller by calling a graph template dynamically. That's four graphs showing at once, 12 plots per graph, 10000 XY value pairs per plot. Each graph was setup to get its data every 50-200ms.
    How much data you can plot with decent performance also depends on the hardware you're using, i.e., CPU speed, RAM size, video capability, etc. It can also depend on how efficiently you've coded your application. Are you initializing your data arrays and using "Replace Subset" or are you using the less efficient "Build Array" for example?
    Message Edited by Bill@NGC on 09-11-2007 09:31 PM
    “A child of five could understand this. Send someone to fetch a child of five.”
    ― Groucho Marx

  • OBIEE10G - Javascript problems with graphs

    Hi,
    Is there any known problem with using javascript and the display of graphs? I have a report where i have a pivot table where i use some javascript to format that table. Below that table i have 2 graphs that are different reports from the one with the pivot table (see images below).
    Version working well
    http://imageshack.us/f/41/graphworkingok.jpg/
    Version with problems
    http://imageshack.us/f/220/graphwithproblems.jpg/
    I guess the problems may be related with javascript because when i remove the javascript from the pivot table (i have it in a static text view) the graphs seem to work ok.
    I'm not an expert (far from that) with javascript and i was playing around with it so i could format the pivot table the way i wanted but i don't have enough knowledge of it to understand what may be causing the problem.
    Thanks

    I didn't do that because the line i want to format is a "manually" built line. I want to format the last line (total line) but that line wasn't made using the total feature of OBIEE but built by myself. What i do in that line is changing the background color of all the cells in that last line and changing the font-size as well.
    Would i be able to do this just by using CSS? From what i read i think i can't that's why i used JS.
    Btw, what i did is related to this other thread i created where i explained my problem, this may help:
    OBI10G - Format a specific cell of a pivot table
    Edited by: Pedro F on 19/Mar/2012 4:15

  • PROBLEM WITH GRAPH DRAWING PACKAGE

    Hi all,
    I have been trying to compile and run some code using "JOPenChart" a free charting tool, but I am having many problems.
    Here is the small class:
    import de.progra.charting.*;
    import de.progra.charting.model.*;
    import de.progra.charting.render.*;
    import java.awt.*;
    import java.io.*;
    public class test{
    public static void makeFirstChart() {
         int[][] model = {{0, 100, 200000}};     // Create data array
         double[] columns = {0.0, 1.0, 2000.0};  // Create x-axis values
         String[] rows = {"DataSet 1"};          // Create data set title
         String title = "A First Test";          // Create diagram title
         int width = 640;                        // Image size
         int height = 480;
         // Create data model
         DefaultChartDataModel data = new DefaultChartDataModel(model, columns, rows);
         // Create chart with default coordinate system
         DefaultChart c = new DefaultChart(data, title, DefaultChart.LINEAR_X_LINEAR_Y);
         // Add a line chart renderer
         c.addChartRenderer(new LineChartRenderer(c.getCoordSystem(), data,
         RowColorModel.getInstance(data)), 1);
         // Set the chart size
         c.setBounds(new Rectangle(0, 0, width, height));
         // Export the chart as a PNG image
         try {
              ChartEncoder.createEncodedImage(new FileOutputStream(System.getProperty("user.home")+"/first.png"), c, "png");
              } catch(Exception e)
                   e.printStackTrace();
    }//method
    public static void main (String [] args)
         makeFirstChart();
    }//classI have downloaded the JAR files from the web site. They are called:
    "jep.jar"
    "servlet.jar"
    "charting-0.94.jar"
    but they do not seem to make any difference and I still get compile errors:
    C:\Proj\code\chart>javac test.java
    test.java:1: package de.progra.charting does not exist
    import de.progra.charting.*;
    test.java:2: package de.progra.charting.model does not exist
    import de.progra.charting.model.*;
    test.java:3: package de.progra.charting.render does not exist
    import de.progra.charting.render.*;I cannot work out how to let the cimpiler know that I want to use the said JAR files, or what else to do to solve the above situation...
    Please help as this is CRITICAL to my University project!!!!
    Any help would be much apprecicated!
    Many thanks.

    Does your classpath include the jars you list?
    DB

  • Plot showing problem with graph

    Hi everybody!
    Now I've come to dead end with my vi. I don't know why my vi doesn't show the trend line anymore. The previous version I did show the line, but now I've tried many things but the line wouldn't show up.
    The idea is that graph shows max, mean and min values as a trendline by pressing a save button. And a x value is generated by a same button and it demonstrates distance between saving points.
    The attached Vi illustrates my latest attempt.
    Thanks
    Neuvos
    Attachments:
    Saver.vi ‏294 KB

    I think these fixes will do what you want.
    Attachments:
    Saver[1].vi ‏214 KB

  • Problem with graph pivoted result

    Hi Experts,
    i created one report in pivot table view , in that one column having values like 30%,30-40%,40-50% so on...
    so i placed that column in column section so..in the pivot view i got the column values like above..but, when i tried to check the graph pivoted result i am getting 6 to 7 individual pie charts(for 30% one pie chart,30-40
    % one pie chart so onn..) for my report which is not required..
    i need only single pie chart,,..
    can any one help me pls

    hi vineeth,
    thanks for ur reply..
    here problem is want to see both pivot table view and corresponding graph pivoted result in 11g.
    we can check the option for graph results ryt in pivot table like i did that.
    i am not creating separate graph view.
    so how can i do this??

  • Problems with graphs

    Hi,
    I 've create a graph in graph builder which I have integrated in my report.. I put a link on it (hyperlink graph).
    1. the picture ddoesn't appear like in the runtime (there are a lot of string in the image). Is it possible to generate ajpeg rather than a gif ?
    2. No links appears on the graph..!!
    Thanks , regards
    null

    Is it possible that you want to create something like an XY chart, i.e. an XY graph that updates as new points are added during execution?
    LabVIEW includes an example. Look for XY chart in the example browser.
    Even simpler, you could do something like in the attached VI (LabVIEW 7.0).
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    UpdateXYGraph.vi ‏29 KB

  • Problem with graphis accelerato​r

    Hello. Apologize in advance for errors in text but I don't speak english very well. 
    I have Lenovo IdeaPad Z575 and last time I switched on PC game and my notebook declared error, because I haven't graphic accelerator. On Slovak webpages I found that I must have it and that I can download it. I tried to it but when I downloaded what I want and when Installing this program, notebook declared the window "Your computer doesn't satisfy minimal requirements. Can you help me, how I can install the graphic accelerator? 

    The graphics accelerator is hardware. You need a laptop with discrete graphics to play most games, so either shop for a new laptop, or use your laptop for tasks it was designed to do, which doesn't include gaming.
    ThinkPad W-510 i7-820QM(1.73-3.06GHz) Quad Core... ThinkPad T500, T9900, 8gb SSD...FrankNpad T-60p/61p (X9000 2.8ghz) 8gb SSD ips FlexView...ThinkPad T-61p (T9300 2.5ghz) 8gb ram...Thinkpad X-61 Tablet 4gb ram...ThinkPad A-31 (1.9ghz P4 1.5gb ram)

  • Problem with autoscale on 3d graph (new)

    Hi
    I have a problem with scaling on the 3D graph (it doesn't work, see attached figures). I've read about the bugs found but this one is not mentioned. Do you guys have any suggestions ? (or I am doing something wrong ?)
    thanks
    Attachments:
    3d_image.png ‏36 KB
    3d_graph..png ‏8 KB

    Update: The CAR id for the autoscaling issue mentioned in this thread is not 148431. The new CAR id is 209191. Thank you
    Message Edited by Nitin T on 02-22-2010 09:53 AM

  • Problem with printing graph larger than screen size in labview6 (plots are shopped).

    I have attached with my message the report I try to print. It is a Labview 6 vi.
    I had no problem with Labview 5. But with Labview 6, the plots are shopped (all the rest of the report is correct). What is printed is not what I see.
    The graph is intentionnaly built very large, then rescale to fit page, in order to improve the print quality of the plots. I repeat it, it worked fine with Labview 5.
    Thanks if you can help.
    Lionel.
    Attachments:
    Print_of_large_scale_graph.vi ‏284 KB

    Hi Lionel,
    I experienced a similar problem days ago: re-compiling a vi from LV 5.1 to LV 6.0.2 its front panel could not be printed anymore; no error, just a blank sheet.( The mass compile procedure did not reported any error).
    The only way to get out from this headache was to re-build the vi in LV 6.0.2, I simply selected all its diagram and copied it in a new vi, saved it and I got print-outs!
    Try it.
    Good luck,
    Alberto

  • Problems with Flash Line Graphs

    I have two problems with the new Flash Line Graphs in APEX 3.1
    1. I have created a query that returns a set number of rows. Sometimes the VALUE for a specific row might be null. When this occurs the LABEL data does not show up on the X axis. I want the LABEL data to show up no matter what. How do I accomplish this?
    2. Related to the above query. When the VALUE field is null for 3 records (or more) in a row, not only does the LABEL data for those records not display, the VALUE and LABEL data for the records that appear in the set after these 3 records also do not display. If one or even two null VALUE fields appears in a row, things are still OK. What do I need to do to get all my data to display?
    Any help would be appreciated.
    THANKS
    Raymond

    Raymond,
    For the Interactive report chart issue, could it be related to this?
    Re: Apex 3.1. Interactive Report. Questions and Problems.
    Interactive Report. Chart. Seems to be bug...
    - Christina

  • Problems with 3D graph application redistribution

    Hello wireworkers,
    i wonder if
    someone encountered problems with distribution of application that
    uses 3D graph objects. I've created application that uses NI 3D graph
    component and created installer with "Enable 3D graph support"
    check box enabled. However after installing this application on the
    windows machine without Labview two problems appeared: 1) "Error
    loading control. A newer version needed. The default settings for the
    control will be used." and after it 2) "You have 30 days to
    evaluate the Measurement Studio ActivX control..." and something
    like that. I don't get it. Why some newer version is required? and
    what with that evaluation period?
    Have any hints???
    Thank you in advance and Merry
    Christmas to everyone.
    Alex
    www.xinstruments.com
    Custom Software for Industrial Automation
    www.hdrconverter.com
    Picture processing made easy

    Hi Alex,
    I tried the process you described on my machine using LabVIEW 7.1 and could not reproduce the behavior.  If you can clarify the version you were using that will be helpful. I will have to clean a test machine and try it again without LabVIEW installed, and get back with you if the problem appears.  In the meanwhile, I found the following KB which, while not referring to the exact same problem you are describing, does address the evaluation message issue.  You can try to follow the steps at the end of the KB, and let me know if that worked.
    http://digital.ni.com/public.nsf/websearch/1E1FB3C19E8E0A9986256F8D0077D0E6?OpenDocument
    Regards,
    Aluma G.
    National Instruments

  • Problem with Pivot Table with Graph: Line Bar Combo

    Hello people!
    I have a problem with pivot table and line bar combo (all in the same view (pivot table))
    I have some measures and one dimension in my report.
    --------------measure1---measure2---measure3
    Dim A.1
    Dim A.2
    Dim A.3
    If I choose my graph line bar combo automatically choose "line" measure 3 (last measure in "Show Controls"). How can I do if I want my measure1 for line and I don't want modify my pivot table?
    Thank you very much!

    Ok, I'll explain my problem again. In my pivot table I add graph vision and I want in the same view (Pivot table). My graph is "Line Bar Combo" and I don't know how but the last of my measures belongs to right AXIS, if I change order of my measures I can see in my graph the measure that I want in my right axis BUT also it changes the order of my pivot table.
    This is my problem. I think that I can do that with different views but I lose my selector view to view graphic and my pivot table at the same time.

  • Help In keithley 2400 VI!!(Problem with the data logging and graph plotting)

    Hi,need help badly=(.
    My program works fine when i run it,and tested it out with a simple diode.The expected start current steps up nicely to the stop current.The only problem is when it ends,i cannot get the data log and the graph,though i already have write code for it.Can someone help me see what's wrong with the code?I've attached the necessary file below,and i'm working with Labview 7.1.
    Thanks in advance!!!
    Attachments:
    24xx Swp-I Meas-V gpib.llb ‏687 KB

    Good morning,
    Without the instrument it might be hard for others to help
    troubleshoot the problem.  Was there a
    specific LabVIEW programming question you had, are you having problems with the
    instrument communication, are there errors? 
    I’d like to help, but could you provide some more specific information
    on what problems you are encountering, and maybe accompany that with a simple
    example which demonstrates the behavior? 
    In general we don’t we will be unable to open specific code and debug,
    but I’d be happy to help with specific questions. 
    I did notice, though, that in your logging VI you have at
    least one section of code which appears to not do anything.  It could be that a small section of code, or
    a wire was removed and the data is not being updated correctly (see pic below).  Is your file being opened properly?  Is the data being passed to the file
    properly?  What are some of the things
    you have examined so far?
    Sorry I could not provide the ‘fix’, but I’m confident that
    we can help.  Thanks for posting, and
    have a great day-
    Message Edited by Travis M. on 07-11-2006 08:51 AM
    Travis M
    LabVIEW R&D
    National Instruments
    Attachments:
    untitled.JPG ‏88 KB

Maybe you are looking for

  • Installing 10.6.8 partition on 10.8 iMac (mid 2011)

    Hello.  I have recently bought a previous generation iMac, 21.5 inch mid 2011, 2.8gHz, i7 (special build), 8GB memory.  It was apparently a refurb, and purchased by the first owner around Oct 2012. It came with Mountain Lion 10.8.2 installed, and I h

  • CC&B 2.3.1 SP2 installation

    Has anyone successfully installed CC&B 2.3.1 SP2 in windows Tomcat ? I am getting some errors. Thanks in advance

  • Warning while using KToolBar

    The midlet code compiles alright but when i try to run it this is what i get WARNING: Resource "Rsrc 58898" may be too large. Hotsync may fail. Wrote: c:\J2mewtk\wtklib\devices\PalmOS_Device\testDB.prc after printing this message the Palm OS emulator

  • Problem report - web browsing / dowing

    while using / downloading file from gprs it will show a error called "disk error - cannot write completely" and it has a option called retry, stop then mabile gets hang. Pls do the need full model no: C6-00 web browser: opera mini, uc browser

  • Report for viewing FB60

    Hi, I would like to know the t-code for viewing a list of all documents posted via FB60.  I only want to see what was posted with just FB60.  I do not have access to SE16N or SE16. Thanks, Kevin