Display Values in Graphs

I am using performance point services for Project Server / SharePoint 2013, I have developed Analytical reports, I was wondering how the calculated values could appear on the graph instead of the tool tip

Hi,
Using Webdynpro fro Java is quite easier for BUSG if have configured the Server properly. The BusinessGraphics Library contains the following UI elements:
1.BusinessGraphics & 2.GeoMap
They enable you to use business graphics and geographical maps in a Web Dynpro application.
The Web Dynpro BusinessGraphics API and its associated classes are grouped together by topic, because of the complexity of presentation graphics. They form a standalone library in the UI element libraries.
Just Check the below links.
https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50c7a90f-21a3-2910-87b5-e1f0e39462ae
IGS customizing in WebDynpro for Java
http://help.sap.com/saphelp_nw04/helpdata/en/3e/c450c4cf2f6d418204afeea17655d3/frameset.htm
Hope they are helpful.
Regards
Vijay

Similar Messages

  • Displaying Value in 3D Graph

    Hi!
    PFA below. Its regarding the screen shot of 3D Graph.
    As we can see in the picture that the values are not accurate to view. So its better to display values(numbers) on top of each tower in 3D Graph.
    How to display that? Kindly suggest me any solution.
    With Regards,
    Yarnagula Sudhir.

    Hi Ethan,
    Find Screen Shots and the Code  below.
    1. Input Screen:
    2. Code:
       *Graph Internal Tables
    DATA: BEGIN OF itab OCCURS 0,
          text(30) TYPE c,
          value TYPE z2d_value,
          END OF itab,
          BEGIN OF opts OCCURS 0,
          c(80) TYPE c,
          END OF opts,
          BEGIN OF tyear OCCURS 0,
          c(20) TYPE c,
          END OF tyear.
    *Selection Screen
    SELECTION-SCREEN BEGIN OF BLOCK  b1 WITH FRAME TITLE text-001.
    PARAMETERS: p1 TYPE z2d_value,
                p2 TYPE z2d_value,
                p3 TYPE z2d_value,
                p4 TYPE z2d_value,
                p5 TYPE z2d_value,
                p6 TYPE z2d_value,
                p7 TYPE z2d_value,
                p8 TYPE z2d_value.
    SELECTION-SCREEN END OF BLOCK b1.
    START-OF-SELECTION.
    * Changing User Input Internal Table to 2D Graph Format Internal Table
      itab-text = 'A Diagnostic'.
      itab-value = p1.
      APPEND itab.
      itab-text = 'B Dis-Assemble'.
      itab-value = p2.
      APPEND itab.
      itab-text = 'C Decision Making'.
      itab-value = p3.
      APPEND itab.
      itab-text = 'D Modification'.
      itab-value = p4.
      APPEND itab.
      itab-text = 'E Spare Replacement'.
      itab-value = p5.
      APPEND itab.
      itab-text = 'F Forklift Arranging'.
      itab-value = p6.
      APPEND itab.
      itab-text = 'G Tool Room Work'.
      itab-value = p7.
      APPEND itab.
      itab-text = 'H Machine Trial'.
      itab-value = p8.
      APPEND itab.
    *2D Graphics: HB: Horizontal Bar
      opts-c = 'P2TYPE = HB'.
      APPEND opts.
    *FM to Create 2D Graph
      CALL FUNCTION 'GRAPH_MATRIX_2D'
        EXPORTING
          titl        = 'HMSI - MNSR - Maintenance Engine Time Analysis in Minutes'
        TABLES
          data        = itab
          opts        = opts
          TCOL        = tyear
        EXCEPTIONS
          col_invalid = 1
          opt_invalid = 2
          OTHERS      = 3.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    3. Output:
    Now Let me know how to get the Values on top of the above bars.
    With Regards,
    Sudhir.

  • How to display Values(Numbers) in 3D Graph?

    Hi!
    PFA below. Its regarding the screen shot of 3D Graph.
    As we can see in the picture that the values are not accurate to view. So its better to display values(numbers) on top of each tower in 3D Graph.
    How to display that? Kindly suggest me any solution.
    With Regards,
    Yarnagula Sudhir.

    Hi!
    PFA below. Its regarding the screen shot of 3D Graph.
    As we can see in the picture that the values are not accurate to view. So its better to display values(numbers) on top of each tower in 3D Graph.
    How to display that? Kindly suggest me any solution.
    With Regards,
    Yarnagula Sudhir.

  • How to display Values(Numbers) over every individual Towers in 3D Graph?

    Hi!
    PFA below. Its regarding the screen shot of 3D Graph.
    As we can see in the picture that the values are not accurate to view. So its better to display values(numbers) on top of each tower in 3D Graph.
    How to display that? Kindly suggest me any solution.
    With Regards,
    Yarnagula Sudhir.
    Message was edited by: Yarnagula Sudhir
    Message was edited by: Yarnagula Sudhir

    You do realize that this forum is for Adobe InDesign?

  • How to display values on top of each bar in graph???

    Hi Everyone,
    My Jdev version is 11.1.2.3.0.
    I have developed one ADF BAr Graph </dvt:barGraph>. Everything is working fine.
    How can i show the values on top of each bar in my graph???
    And how can we show arrows left arrow right arrow top arrow bottom arrow like arrows in keyboard in ADF??? Example: Text1 right arrow Text2 right arrow Text3
    Any suggestions will be really helpful.
    Thanks.

    I'm not sure if that's what you're looking for, but you can display values by using markerText tag:
    <dvt:barGraph...>
      <dvt:markerText rendered="true">
          <dvt:y1Format>
            <af:convertNumber type="number"/>
          </dvt:y1Format>
          <dvt:graphFont id="graphFont4" size="20"/>
      </dvt:markerText>
    </dvt:barGraph>
    About the other question, have you tried to use unicode characters? Right arrow, for example is "&#8680;"

  • Memory problem with loading a csv file and displaying 2 xy graphs

    Hi there, i'm having some memory issues with this little program.
    What i'm trying to do is reading a .csv file of 215 mb (6 million lines more or less), extracting the x-y values as 1d array and displaying them in 2 xy graphs (vi attacked).
    I've noticed that this process eats from 1.6 to 2 gb of ram and the 2 x-y graphs, as soon as they are loaded (2 minutes more or less) are really realy slow to move with the scrollbar.
    My question is: Is there a way for use less memory resources and make the graphs move smoother ?
    Thanks in advance,
    Ierman Gert
    Attachments:
    read from file test.vi ‏106 KB

    Hi lerman,
    how many datapoints do you need to handle? How many do you display on the graphs?
    Some notes:
    - Each graph has its own data buffer. So all data wired to the graph will be buffered again in memory. When wiring a (big) 1d array to the graph a copy will be made in memory. And you mentioned 2 graphs...
    - load the array in parts: read a number of lines, parse them to arrays as before (maybe using "spreadsheet string to array"?), finally append the parts to build the big array (may lead to memory problems too).
    - avoid datacopies when handling big arrays. You can show buffer creation using menu->tools->advanced->show buffer allocation
    - use SGL instead of DBL when possible...
    Message Edited by GerdW on 05-12-2009 10:02 PM
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • My performance is very slow when I run graphs. How do I increase the speed at which I can do other things while the data is being updated and displayed on the graphs?

    I am doing an an aquisition and displaying the data on graphs. When I run the program it is slow. I think because I have the number of scans to read associated with my scan rate. It takes the number of seconds I want to display on the chart times the scan rate and feeds that into the number of samples to read at a time from the AI read. The problem is that it stalls until the data points are aquired and displayed so I cannot click or change values on the front panel until the updates occur on the graph. What can I do to be able to help this?

    On Fri, 15 Aug 2003 11:55:03 -0500 (CDT), HAL wrote:
    >My performance is very slow when I run graphs. How do I increase the
    >speed at which I can do other things while the data is being updated
    >and displayed on the graphs?
    >
    >I am doing an an aquisition and displaying the data on graphs. When I
    >run the program it is slow. I think because I have the number of
    >scans to read associated with my scan rate. It takes the number of
    >seconds I want to display on the chart times the scan rate and feeds
    >that into the number of samples to read at a time from the AI read.
    >The problem is that it stalls until the data points are aquired and
    >displayed so I cannot click or change values on the front panel until
    >the updates occur on the graph. What can I do to be a
    ble to help
    >this?
    It may also be your graphics card. LabVIEW can max the CPU and you
    screen may not be refreshing very fast.
    --Ray
    "There are very few problems that cannot be solved by
    orders ending with 'or die.' " -Alistair J.R Young

  • Display values in legend obiee 11g

    Dear All,
    Is there a way to display values in legend for obiee 11g graph? I could not find that features. It only has show or do not show the legend.
    Thanks,
    Sushil

    is it not something like
    select columnA from SubjectAreat where
    columnA is not like '%A%'
    and columnA is not like '%B%'

  • Pie chart legend should display values and percents

    Hi All,
    Can any body suggest me how to display values and percent in pie chart legend.Thanks in advance.
    Edited by: 997414 on Apr 1, 2013 11:25 PM

    Hi,
    I used this tag : <SliceLabel textType="LD_TEXT_PERCENT"/>
    My full graph;
    chart:
    <Graph depthAngle="50" depthRadius="8" pieDepth="30" pieTilt="20" seriesEffect="SE_AUTO_GRADIENT" graphType="PIE"><LegendArea visible="false" automaticPlacement="AP_NEVER" position="LAP_BOTTOM" /><LocalGridData colCount="1" rowCount="{count(.//DSYATIRIMDAGILIMANA_ROW)}"><RowLabels><xsl:for-each select=".//DSYATIRIMDAGILIMANA_ROW" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><Label><xsl:value-of select="RAPORAD" /></Label></xsl:for-each></RowLabels><DataValues><xsl:for-each select=".//DSYATIRIMDAGILIMANA_ROW" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><RowData><Cell><xsl:value-of select="ORAN" /></Cell></RowData></xsl:for-each></DataValues></LocalGridData>
    <SliceLabel textType="LD_TEXT_PERCENT"/>
    </Graph>
    I hope, It helps you since I figure it out in very very hard way.
    This is the main reference : http://www.oracle.com/technetwork/middleware/reports/graph-dtd-technote-2-094743.html

  • Displaying % value in WAD

    Hello Experts,
    I have one graph in WAD that is 2.5D row graph with 2 rows like Actual and Plan values.
    I need to display % value for Actual / Plan after the second row top right to that row.
    If we select % in value properties for series 1 or 2, it will be like $Percent "%". I tried to calculate the Actual / Plan using this by applying like $Series1/$Series2, but it's not correct. Can we achieve this in graph itself. I can create another key figure with actual / Plan and hide that graph and display only value, but it will be displayed in 3rd row not in 2nd row. I need to display in 2nd row only.
    Can anyone do some help to achieve this?
    Thanks in advance,
    Venky

    HI,
    I have 2 KF's and graph should be displayed with 2 bars, i want to display only the % value of 3rd KF on 2nd bar/line (on plan ) but dont want to display bar/line for the 3rd KF (i.e Actual / Plan).
    I tried to do by creating 3rd KF in query designer and in WAD hide that bar/line and displayed only value in %. But it will display below 2 bars/lines.....no on the 2nd bar/line. I want to display on 2nd bar/line.
    Can i achieve this by calculating the Actual / Plan (3rd KF ) value in graph itself instead of query designer with 3rd KF?. Or any other way to get this value?
    Thanks,
    Venky

  • Too much displayed values in flash 2D line

    I have a 2D line flash with variable number of points.
    The X ans Y labels are rendered and the Y values of the points are displayed on the chart.
    When the number of points increases the displayed values on the chart start to overlap.
    When the number of points is too great, values overlap so much that we can't read any of them.
    Is there a way to decrease the number of displayed values on the flash while retaining the same number of points?

    Hi Andy,
    Thanks for your quick response. If I'm correct in understanding what your saying is that with 2D Line charts that have two series in order for them to display togethor then the label must appear in both series.
    I've had a bash using your sql for the 1st series and modifying the second series.
    Series 1
    SELECT NULL LINK,
    X.THE_DATE LABEL,
    Y.PROJECTED_HOURS VALUE
    FROM
    (SELECT END_DATE THE_DATE FROM TEST_PROJECTED
    UNION
    SELECT LIFING_DATE THE_DATE FROM TEST_ACTUAL
    ) X
    LEFT OUTER JOIN TEST_PROJECTED Y ON X.THE_DATE = Y.END_DATE
    ORDER BY X.THE_DATE
    07/30/2009 700
    08/09/2009 800
    08/14/2009
    08/27/2009 9000
    Series 2
    SELECT NULL LINK,
    X.THE_DATE LABEL,
    Y.ACTUAL_HOURS VALUE
    FROM
    (SELECT END_DATE THE_DATE FROM TEST_PROJECTED
    UNION
    SELECT LIFING_DATE THE_DATE FROM TEST_ACTUAL
    ) X
    LEFT OUTER JOIN TEST_ACTUAL Y ON X.THE_DATE = Y.LIFING_DATE
    ORDER BY X.THE_DATE
    07/30/2009 800
    08/09/2009 1000
    08/14/2009 1201
    08/27/2009 12000
    This is a great improvement the series 2 now displays fine and all the points for series 1 are plotted correctly but it seems like the null value prevents the joining of the coordinates in this series. All the points 700,800 and 9000 are displayed correctly but the graph line only joins 700 and 800.
    Any further ideas? Thanks Pete

  • Scale Maker Display Value At Mouse Pointer

    [http://picasaweb.google.com/lh/photo/lpP1mX7pTd4R_ePr89fw7w0hA5i5v2I0J6LQTHStSe0?feat=directlink]
    Hi ,
    I have used Scale Marker in the Line Graph(Image link attached) using a SQL Query.
    Sales Fact(second Line) on the graph displays Value when mouse is pointed but for Marker line this does not happen.
    Can any one suggest a method to resolve this?
    Regards,
    Sreekanth

    John,
    I wanted to avoid taking the column as u suggested in Criteria because its causing a Cartesiona product ex:
    Select Target_Value,Quantity_Sold from sales,Target_Ref where Sales.rowid<> Target_Ref.Target_id.
    I wanted to avoid this by pacing the Select Target_value from Target_ref query in scale Marker.But my client requires wants data lables to be displayed for Scale marker too.
    Regards,
    skarangi

  • Display multiple Waveform-Graphs on a separate Frontpanel

    Hi there,
    I'm looking for a solution to display multiple waveform-graphs on a separate frontpanel.
    In my application I measure a number of channels (number is a user-input). The signals I want to display each in a separate waveform-graph, because they have different scales. They shall be arranged that way, that the user can switch them on and off or arranges them on the screen, while the application is running (measuring). He shall also be able to maximize all graphs or a graph window to have a closer look at the signals.
    I already tried several things.
    1. I placed the maximum number of graphs in a separate vi, which I start in my application and then switch the frontpanel on and off via a property-node. The values I also write via the references of the waveform-array, which I place in an array. This way I can also change the propertys of each plot (scale, xmin xmax, etc), but I always have all graphs on the screen (also the unused).
    2. I then tried to change the visible-property of the unused graphs, but I cannot scale and rearrange the remaining graphs to the full frontpanel-size, because this property is read-only.
    3. I placed just one waveform-graph in the vi and then start as many vis, as I need. This is cool, because I also can program the position and size of each frontpanel, so that they are arranged in a grid on the display, but all the graphs are separate and it is uncomfortable if the user had to arrange them separate. The windows need to be docked ore something like that.
    4. I tried to place the graph-vis in subpanels, but then I cannot change the position and size of the vis programmatically.
    Has anyone an idea, how to solve this?
    I am using LabView2009Sp1 Professional Development System
    Thanks Norman

    Thanks so far,
    I attached some examples of what I tried already.
    1. MaximumNumberOf Graphs - I show 6 graphs although only two are needed. I cannot rescale the used ones to the full screen size, because the property is read-only
    2. RescaledFrontpanel - I switch the unused graphs to invisible, resize the frontpanel to hide the unused graphs, but now the window is not zoomable
    3. GridOfWindows displays the desired grid of graphs in separate windows, but they don't stick together
    I hope this explains the situation better.
    Norman
    Attachments:
    multigraph.llb ‏136 KB

  • Is it possible to easily view the actual (not displayed) value of a cell?

    Is it possible to easily view the actual value of a cell calculated by a formula, not the displayed value after it has been rounded off?
    For instance, if you enter the number 1.23456789 and display it rounded to 3 decimal places, you can still see the full, actual value in the formula bar:
    The problem arises when you reference that number in a formula: you can't see the underlying value (even though it's obviously known to Numbers):
    Is there a way to get the formula bar (or a tooltip) to show the full, unrounded value? Changing the display to more decimal places is not very convenient, especially on big spreadsheets. Maybe it could be done via AppleScript?
    A related issue arises when you try to look at the sum or average of a number: if the numbers being summed have the same number of rounded decimals, the sum displayed is rounded too. I find this very annoying: I want to see the actual value, not how my spreadsheet may be displaying it in that cell.
    Although, curiously, rounding to any number of decimals as long as they are not all the same displays the full, correct underlying values:
    Has anyone come up with workarounds for these issues?

    I did it with an AppleScript.
    Now any time I have a cell or cell range selected, I do one click (AppleScript menu > Display Value at Full Precision), and it shows me a popup alert that simply reads:
         rowname : columnname
         value
    Here's the script:
    tell application "Numbers"
              try
                        set selectedTables to (tables of sheets of front document whose selection range is not missing value)
                        repeat with selectedTable in selectedTables -- tables of each sheet
                                  if contents of selectedTable is not {} then -- the list is not empty, it's the selected sheet
                                            set selectedCells to cells of selection range of (get item 1 of selectedTable)
                                            repeat with i in selectedCells -- each selected cell
                                                      set {selectedRow, selectedColumn, selectedVal} to {row, column, value} of i
      --                                                  display alert "value of " & name of selectedRow & " : " & name of selectedColumn & " (" & address of selectedRow & ":" & address of selectedColumn & ")" message selectedVal
      display alert name of selectedRow & " : " & name of selectedColumn message selectedVal
                                            end repeat
                                            return
                                  end if
                        end repeat
              on error eMsg number eNum
      display alert eMsg
              end try
    end tell
    ( Props to Jacques Rioux who posted code to get me started at https://discussions.apple.com/thread/3964938 )

  • Change display value of "select list"

    Hi!
    I have a problem with a select list, I want to change the display value through an own pop up (page 5 of apex application) after I submit in it.
    The select list is based on a sql query:
    select A_NAME display_value, A_ID return_value
    from APPLICATIONS
    where a_application_type='GROUP'
    order by 1
    beside I have an link to open a pop up window:
    ... onClick="window.open ('f?p=&APP_ID.:5:&SESSION.::::', 'newWin',
    'scrollbars=no,status=no,width=500,height=270' ...
    On the pop up site there is a tree and a submit button which close the window and renew the original page:
    javascript:window.opener.location.reload();window.close();
    Through the tree I get the value (Group-ID) which I need.
    When I'm back on page 4 a "before header" renew page process links again on the side 4 and change the value of my select list. Afterwards the values have changed correctly but the display value is still the old one. It only change when i go on an other page of the apex application and come back.
    I don't know why it doesn't change immediately!?
    Thanks ahead

    I have done with a solution just in a nutshell of what u r looking for:
    1.create HTML region.
    Add two items : Select list with redirect(P6_X) and text field(P7_X)
    2. Select list is based on LOV query as :
    select empno d,empno r from emp ;
    Source value is Empno Type:DBcolumn.
    3.The text field Source type : SQL Query .
    Query : select ename from emp where empno = :P6_X
    Now select from the dropdown empno and it will populate the Ename value accordingly based on the query .
    U can have more than one text fields and populate those in the same way.....
    Cheers,
    ROSY

Maybe you are looking for

  • Error in rendering/encoding in iDVD v 7.1.2 with MacMini & music in intro not playing

    I am having some difficulty in creating a DVD in iDVD.  I've created  50+ home DVDs before, but now I am getting this error message every time: Error in rendering/encoding "There was an error during rendering/encoding of the menus/slideshows. The bur

  • Regarding reversal of void check using FCH8

    Hi gurus,     I am trying to reverse a void check using T-Code FCH8. I gave the options 5 for void reason code and 03 for Reversal Reason. I want the posting date to be the date when I reverse it i.e 10/22/2008 which is today. But when I hit enter it

  • User status for an operation

    Hi all, I have 3 queries- 1) What is the meaning of business transaction "GOODS MOVEMENT" in BS02-status profile / user status screen 2) I have an order with 2 operations in it. I have created a user status for the "PP/PM operation" business object t

  • Understanding DMZ ACLs

    I understand ACLs to work in this way on an ASA: If the traffic DESTINATION is a host on the subnet where the ACL exists, it's considered INCOMING.  For example, if I want to allow my hosts on the inside to access the internet, since traffic sourced

  • Getting the visible lines from a JTextArea

    I'm using a JTextArea with a fixed size. I've used the setLineWrap(true) and setWrapStyleWord(true) methods on this JTextArea, so when the user types in some text longer than the visible width, it will wrap into the next line. I need to get each visi