Customize Graph - Helps

Hello all,
actually i m looking for customize the BI Bean Graph, i been look through some thread in Forum : BI Bean, but when come to customizing the graph display, it ask for post the problem here.
refer to :
http://www.oracle.com/technology/products/reports/htdocs/faq/graph_faq_with_style.html
How can I align the Legend with Bars?
1.R-enter the Graph Wizard and in the Layout tab, drag the Employee Name field into "Groups" from "Bars". This places the data you are displaying into different groups, i.e., each employee name will be a separate group.
i was unfamiliar with report, but i cant find such thing in jdev , issit those thing only can done in report? Or can someone guide me directly modify the graph.xml
Thanks

Seems to work OK if you place the entire graph into customize mode and simply right-click on the palette buttons to import your graphics. try it!
LabVIEW Champion . Do more with less code and in less time .

Similar Messages

  • Web dynpro for abap how to create a customize search help in alv column

       hi:
          Web dynpro for abap how to create a customize search help in alv column and put search help value into alv column?
          Are there specific examples ?
          thanks!!

    HI:
       I want to created a freely programed help which include date&time,and put help value to alv column.
      I have created a freely programed help in web dynpro for abpa application,I refer:
      **************** - WebDynpro for ABAP
      but have a problem!
       If you focus on the the input field in the first row, you get the value help
    However if  I go to the second row and focus on the same input field in this column, I don't get the value help:
    What is a good way to solve similar problems?
    thanks

  • How can we add customize seardh help in standard tables?

    Hi,
    Gurus,
    How can we add / assign customize Search Help to standard tables
    as my knowledge this is working fine in SAP 4.60. Where as i was not
    allowing us to add a search help to its data element is there any alternate way to add if give me your support.
    thank you
    shabeer ahmed

    hi shabeer ahmed
    This one is already posted one, chk it
    First in the MARA table the Search Help(MAT1) for matnr is selected and viewed.
    In the included search helps tab of MAT1 there is another search help MAT1_A.
    For that search help in the included u201Csearch helpu201D tab view is selected .
    Inside that there is a search help called MAT1_A_APPEND.
    Then in the included search help tab of MAT1_A_APPEND, the customized search helps can be attached.
    Regards,
    Deva

  • Customize portal "Help" link based on user roles

    Is there a chance to customize the Help link URL in Masthead iView based on user roles? The use case we have is that the "Help" should be different for users of the purchasing company from those of the supplying company.
    Thanks.

    Hello Jay.
    This is a multi step process.
    Step 1 : Create 2 desktops with everything as same but different mastheads.
    - Copy your existing desktop and paste it in your working folder in PCD (Not select Delta link)
    - Now download masthead par file.
    - Modify your masthead par file where you will disable help link. Rename you masthead file (newMasthead.par) and export it from NWDS. Now import it in portal.
    - open your framework page in desktop2. Just add your new masthead in it. Enable the new one and disable the existing one.
    Step 2 : Create 2 groups of users. (First one belong to users who wish to see help link . i.e existing desktop) (Second of thoese users who do not have to see help link i.e. newDesktop)
    - Assign users to appropriate groups.
    - Assign same roles to both groups.
    Step 3 : Modify main rule section in PCD.
    - If group = HelpLinkUsers Then Desktop1
    If group = NoHelpLinkUsers Then Desktop2.
    You may find above process bit tedious and lengthy.
    But if you wish to further customize your portal then this will be needed one day.
    If you find problems in implementing any step then please search in google or SDN.
    Please revert back on any specific question on above approach you may face while implementing.
    Thanks

  • Graph Help for Week Interval

    Hello Crystal Designers,
    Need some guidance on creating a line graph showing a trend.  The X-axis needs to show weekly increments that start on Mondays.  The Y-axis will be a count of fields that fall into a weekly increment.  There will be 3 different date fields that will be indicated on the graph so they will be stacked.  The dates in the database are random and are spread out over a 3 yr. period.  I need the labels on the X-axis to show each and every Monday for the 3 yr period regardless if one of the dates in the database = the particular Monday or not.
    My first thought is to create a custom group for the weekly intervals and show the 3 date fields in the details section.  That way, I could put a summary in the footer that counts how many dates fall into that particular week interval group.  The thing that is stopping me is I don't know how I can create this custom group because there won't always be a date in the database that will match a particular Monday.  In other words, I'd be trying to show a date for a field value that doesn't exist.
    If I'm going about this all wrong, please let me know.  If not, please help with a formula I could use for the week interval.
    Thanks in advance,
    Gary

    In general I think you have the right idea.
    Is there a calendar table somewhere that you can use?  If not, you could always produce a temporary one with something like (MS SQL):
    declare @date datetime;
    declare @dow int;
    declare @weekno int;
    set @date = '2007-12-31';  -- a Monday;
    set @weekno = 0;
    create table #calendar (date datetime, dow int, week_no int);
    while @date < 2030-12-31  -- or however far out you wanna go...
    begin
      set @dow = datepart("dw", @date);
      if @dow = 2
      begin
        set @weekno = @weekno + 1
      end
      insert into #calendar (@date, @dow, @weekno);
      set @date = dateadd("d", 1, @date);
    end;
    select * from #calendar;
    And then use this to drive the rest of the report (i.e., make it the left side of Left Outer Joins to the other tables).
    HTH,
    Carl
    P.S.  There's a syntax error on the WHILE line:  The date needs to be in quotes.  For some reason, when previewing this message, the date did not show when I put the quotes there.  Weird!!

  • How to Disable/Customize Search Help in Shopping Cart tables?

    Hi,
    Is there a way to disable/customize the search helps associated in a field within the Shopping Cart detail/items table? Eg. G/L Account field. I already tried disabling the Input Help in the Attribute associated with the field in the COMPONENTCONTROLLER but the seach help is still showing up.
    Please advise.

    Hello again,
    Prasanna is right: the easiest way to change the search help for certain fields is to use the WD-Exits, in this case use of the WDDOMODIFYVIEW exit by creating an enhancement implementation.
    Here can dynamically change the help-value for certain fields. I will give you a sample for accounting field G-L-Account:
    METHOD pst4es1711jmkl7v3y2nb6isgkme . "Exit of WDDOMODIFYVIEW (in ZENH_ACCT......
    data .....
    *--- set value_help
        lo_node1       = wd_context->get_child_node( 'COMP_CONTEXT' ).
        lo_node2       = lo_node1->get_child_node( 'ACCOUNT_DETAIL' ).
        lo_node_info   ?= lo_node2->get_node_info( ).
        CALL METHOD lo_node_info->set_attribute_value_help
          EXPORTING
            name            = 'G_L_ACCT'
            value_help_mode = if_wd_context_node_info=>c_value_help_mode-application_defined
            value_help      = 'USG_ACCTF4'.
    Hope this will satisfy your request. Have success!
    Regards
    Joe

  • Plotting xyz Coordinate​s on 3D Graph Help

    Hi,
    I have an array (max size 10) of xyz coordinates which i want to plot on a 3D graph.
    These 10 points are constantly moving (data from a Leap Motion hand tracker)
    I have attached a screen shot of simple VI and example data
    How would i go about gaphing this?

    Hi coqwas,
    That's a pretty interesting project you have there.
    I guess there is 2 types of 3D graph which you can find (use quick drop if you have to): 3D Line Graph and Active X 3D Curve Graph. You can find some examples on 3D graphs in NI Example Finder as well (Open LabVIEW >> Help >> Find Examples... >> Search key word "3D graph").
    Since it is a 3D array, can you tell me the array size for X, Y and Z (e.g. X size by Y size by Z size)? What does the row and column represents in the XYZ array shown inyour screenshot? 
    To use the 3D Line Graph.vi, you'll need to provide a 1D array of X vector, Y vector and Z vector. So you need to extract the values from that XYZ 3D array to those vectors respectively. You can extract the Z layers using Array Subset and Reshape array. Since I'm not really sure which part of the array (X, Y or Z) represents the finger no., you'll need to separate each array by individual fingers. Each XYZ array for each finger is fed to each create_plot_line.vi (4 fingers meaning 4 create_plot_line.vi) just as shown below:
    You can see there is a number from 0-3 at the create_plot_line.vi. Those are the plot ID (0 means plot 0 and 1 means plot 1). What I am trying to do above is that I'm ploting 4 plots in 1 3D graph. 
    The plot ID is specified by going to the front panel >> Right click on the 3D Line Graph >> select 3D Graph Properties >> go to Plots tab >> on the left column called Plots, add as many plots you want to plot into the 3D graph. 
    Additional info:
    http://zone.ni.com/reference/en-XX/help/371361H-01​/lvhowto/plotting_3d_graphs/
    http://www.ni.com/white-paper/9388/en/
    Warmest regards,
    Lennard.C
    Learning new things everyday...

  • Customize Graph Palette buttons

    Is there a way to customize the Graph Palette buttons in a XYGraph with LabVIEW 8.2.1?
    I'm able to select and customize the cursor movement arrows (I imported two customized images for the ON and OFF state, for example);
    but when I select in the same way the Graph Palette, or one of its buttons, the Edit --> Customize control... option is disabled
    I've already customized most of the other graph parts, and now the Graph Palette looks poor
    Thanks in advance
    Vix
    In claris non fit interpretatio
    Using LV 2013 SP1 on Win 7 64bit
    Using LV 8.2.1 on WinXP SP3
    Using CVI 2012 SP1 on Win 7 64bit, WinXP and WinXP Embedded
    Using CVI 6.0 on Win2k, WinXP and WinXP Embedded
    Solved!
    Go to Solution.

    Seems to work OK if you place the entire graph into customize mode and simply right-click on the palette buttons to import your graphics. try it!
    LabVIEW Champion . Do more with less code and in less time .

  • Line Graph help

    Post Author: Erobson
    CA Forum: Charts and Graphs
    I have data organized into rows as follows:Site    | Period 1 | Period 2 | Period 3 | Period 4|For instance,Site 1 |  45% | 35% | 56% | 60% |Site 2 |  50% | 45% | 36% | 40% |I want to create a line graph where each line represents a site with the periods as the x axis and the % as the y axis (I want to graph across the rows).  All the examples I've been able to find graph down columns, and I can't figure out how to change this.  Any help is apreciated.Best,ERobson

    Post Author: Lugh
    CA Forum: Charts and Graphs
    There are a number of possible solutions.  Here is, IMHO, the simplest:Create a line graph.  Under the Data tab, click Advanced.  In the "On Change Of" section, put Site.  In the Show Values, put each of your Period fields.If you don't want it broken down by site, simply change "On Change Of" to either "For Each Record" or "For All Records", depending on what you want. 

  • Continuously Updating Graph Help

    Relatively new too labview. What I am looking to do is relatively simple. I have an accelerometer that I would like to aquire data from. I want to Log 5 seconds of data at 100hz. When I use a waveform graph it does not update until the entier loops have finished. I can get a live updating graph if i use a waveform chart, but the time scale is set to system time (HH:MMS). I simply want it to start at 0 seconds and go to 5 seconds. The data does not need to be logged on the graph as I will simply be outputting to a file.
    Is there a way to get a continuously updating graph using a waveform graph or is there a way to set up a waveform chart with a time scale that starts at 0 and goes until a defined value (5 seconds) 

    You must use a waveform chart. Not a graph. Goto help in the toolbar, then select Find Examples. Search for chart. 
    Besides which, my opinion is that Express VIs Carthage must be destroyed deleted
    (Sorry no Labview "brag list" so far)

  • Customize search help for date.

    Dear All ,
    Any Idea how we going to customize / standard function the search help for the date by refering to the closing period month and year.
    Example this month closing period is 'July 2009', so when user click on the screen search help date button, the search help will pop up only 'July 2009' calender. Not like standard one with different years and months.
    I only want 1 month calender.
    Any idea ??
    Thanks.

    You may need to look into fm
      CALL FUNCTION 'F4_DATE'
        EXPORTING
          date_for_first_month         = sy-datum  " <your date>
        IMPORTING
          select_date                  = l_select_date
          select_week                  = l_select_week.
    or use class CL_GUI_CALENDAR
    a®s

  • OAF page customization question - help needed urgently!

    Hi,
    To minimize customizations on an OAF page we are trying to handle some validations at the databse layer using a db trigger. The flow is that when the user hits Save on an OAF page and a certain column in a table is updated by the EO, a db trigger set on this column will fire off. Based upon whether the validation went through or not the db trigger might fail
    with an error message. Question is will this message be displayed on the UI without any customizations so that the user knows what happened or will the OAF page just throw a null pointer exception? Also since OAF is writing directly to DB using an EO, will it be too late by the time the trigger kicks in and validates stuff and then based on if there was an error it rollsback the data? Can we rollback the entire transaction or not?
    Please help!

    Adding to Mukul's reply, yes if you are using OAF, let all the control be through the OAF. In your case any error in the DB will be sent back to the user in a very raw way which surely will annoy any user. Also we cann't comment on the rollback status.
    My suggestion is to make use of a callable statement and call a wrapper pl/sql procedure which does all the validations for you (in case you have varied and complex validations) and returns a true or false based on which you can commit the transaction.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Applying function to graph, help please..!

    Hey Guys, 
    I am very new to LabView and do not even know how do I construct the question but I´ll explain it here.
    I am using LabView 8.5 combined with UV-Vis spectrometer to take the readings of absorption against time of a reaction mixture. The reaction continues for 48 hours. What I want to do is, 'at the completion of the reaction, the absorbance graph will become constant. As the absorbance becomes constant, I want the program to swtich on a pump which will push a reagent into the reaction pot containg the reaction mixture and then continue taking reading of absorbance´.. Is it clear ? Is there a way to do so ? I mean how to tell the LabView that as the absorbance becomes constant, switch on the pump while continuing measuring absorbance?
    I shall highly appreciate any help.
    Thank you.
     

    What you need to do is to define how much variation in absorbance readings over some period of time is considered "constant." There will always be some noise and possibly drift in the measurements, so you cannot reasonably expect to have, say, ten consecutive identical readings.
    One way to do this is to take the last group of readings (where you decide how many are in the group), do a linear regression on the readings, and define "constant" as the absolute value of the slope less than some threshold. This tends to take the noise out and may be fairly sensitive to small changes in the slope.
    Lynn

  • Grapher - help needed urgently!

    Hi,
    I need to user grapher for my examn, and there is some simple funtions i need, that i have spend hours trying to find,
    so i hope one in here can help me.
    Simple line in graper ex:
    y=-0,25x+875
    1) How can i 'limit its length' so that the line only shows from x=0 to x=1600??
    2) How can a make a vertical line and also how do i 'limit its length'?
    3) How can a make a horisontal line and also how do i 'limit its length'?
    4) How do i edit the axis labes x and y to f.eks. Q and P?
    Do anyone know where to find a detailed manual in english? (i think i have only seen discussion with one in french)
    Thank you.
    GW1811

    Dear Gitte,
      Most of your question were already answered by e-mail.
    About the last one, an English manual : download (double click)  "Instructions for Use - Grapher from this website, page "Documentation" :
    <http://y.barois.free.fr/grapher/Documentation.html>
    (All free of course and free of advertising).
    Enjoy,
    YB24

  • JPDK customize/about/help language

    I installed JPDK from March into my Portal 3.0.7.6.2.
    Now when I have a Java-Portlet (e.g. Hello World - Servlet Renderer) on my page I get the wrong langauge for "customize", "about" and "help". I get always "Anpassen" ,... because my Jserv is started in a german environment. But when I start Jserv in an english envornment and I try to display a german page I get "customize", ...
    What's wrong? Or does this not work?

    This looks like a bug.
    The JPDK is attempting to the accept-language from the Portal request instead of the portal language that is sent as a parameter. If the accept-language is not passed by the portal then the JPDK will default to the JVM default language - the behaviour you are seeing.

Maybe you are looking for