Modify grid size in dashboard view

I have a dashboard that has a few dashboards within. I end up needing about 12 "grids", which I do by having a master two grid dashboard. The left side is two grids on top of one another showing some graphs (performance widget). The right side
is two grids beside each other. Within the two on the right, I have 5 grids on top of each other for different performance object widgets. Now, the real estate obviously is a little (okay, a LOT) too tight. I have very little information in each grid, so I
have a lot of extra white space and scroll bars to be able to see the other grids. Is there a way that I can change the height of the grid, so that I can get the five to show in a single window? I would have thought it would "auto adjust to fit"
or some such thing, but there has to be a way to define the size so I can design my dashboard to be more effective?
Thanks in advance!
mpleaf

Hi,
As far as I know, we cannot define the size of each cell for grids. But we can re-configure those cell layout. Please right click the dashboard, and choose properties, and then choose the proper layout according to your requirements.
Regards,
Yan Li
Regards, Yan Li

Similar Messages

  • How to modify the size of the view which invoked presentModalViewController

    the value of the modalPresentionSytle is UIModalPresentationFormSheet, after invoking the presentModalViewController, the new view will appear, but the size is fixed, so I want to modify the size, how can I do?

    , thanks.
    I sought the answer to this question from developer who has several years dev experience for iPhone, he told me that the apple didn't support this.

  • I need to change the size of the view for easier reading.  Is there a way to make the page view larger without affecting the form?

    Hi Guys, good product beginning however it's not as good as many of the other Adobe product's workspaces.  I cannot change the size of the view during form design work, so it's a visual strain to work in Forms Central.  Is there a way to modify the view (not affecting the width, size or font when presented on website or on paper)?

    In Photoshop CC 2014 (Windows only) it is possible to use a setting of 200% to scale the UI. On some monitors it improves readability and on others it cuts part of the application screen. To give it a try go to:
    Edit >> Preferences >> Experimental Features
    Put a check-mark in the box and click OK
    Then close PS and re-start for the change to take effect.

  • Reg a user set up in grid control who can view properties of one target

    Hi,
    I am trying to set up a user for grid control who can view only properties of one target. I have tried some options which were suggested but didnt help.when we login i should be able to view only one target to which i am giving view access. but whenever i create a administrator it can view all targets though i give permission to view only one target.does any one have any input on this???
    Thanks and regards,
    Hema

    Hallo Hema,
    I've just quickly tried myself and have no issues creating such a limited user. Do you have any roles granted on the user? Is the "PUBLIC" role modified in your company to have some permissions granted?
    Can you give a quick overview of what information is displayed on the page when you click "View" for the selected user on the Setup -> Administrators page?
    Best regards,
    Robert

  • Grid using Object Oriented View

    Can anyone send me program for grid using object oriented view.

    hi Sandeep,
    please look at this code
    REPORT Z_PICK_LIST .
    TABLES: RESB.
    SELECTION-SCREEN BEGIN OF BLOCK BL1 WITH FRAME TITLE TEXT-BL1.
    SELECT-OPTIONS: S_WERKS FOR RESB-WERKS," Plant
    S_AUFNR FOR RESB-AUFNR," Order number
    S_BDTER FOR RESB-BDTER." Req. date
    SELECTION-SCREEN END OF BLOCK BL1.
    PARAMETERS: P_VARI LIKE DISVARIANT-VARIANT DEFAULT '/STANDARD'.
    DATA: BEGIN OF OUT OCCURS 10,
    AUFNR LIKE RESB-AUFNR, " Order number
    MATNR LIKE RESB-MATNR, " Material
    BDMNG LIKE RESB-BDMNG, " Requirements in UM
    MEINS LIKE RESB-MEINS, " Unit of Measure (UM)
    ERFMG LIKE RESB-ERFMG, " Requirements in UE
    ERFME LIKE RESB-ERFME, " Unit of Entry (UE)
    MAKTX LIKE MAKT-MAKTX, " Mat. description
    END OF OUT.
    INCLUDE Z_ALV_VARIABLES.
    INITIALIZATION.
    REPNAME = SY-REPID.
    PERFORM INITIALIZE_FIELDCAT USING FIELDTAB[].
    PERFORM BUILD_EVENTTAB USING EVENTS[].
    PERFORM BUILD_COMMENT USING HEADING[].
    PERFORM INITIALIZE_VARIANT.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_VARI.
    PERFORM F4_FOR_VARIANT.
    AT SELECTION-SCREEN.
    PERFORM PAI_OF_SELECTION_SCREEN.
    START-OF-SELECTION.
    PERFORM GET_ORDERS.
    PERFORM GET_MATERIAL_DESCRIPTION.
    END-OF-SELECTION.
    PERFORM BUILD_LAYOUT USING LAYOUT.
    PERFORM BUILD_PRINT USING PRINTS.
    PERFORM WRITE_USING_ALV.
    FORM INITIALIZE_FIELDCAT *
    --> P_TAB *
    FORM INITIALIZE_FIELDCAT USING P_TAB TYPE SLIS_T_FIELDCAT_ALV.
    DATA: CAT TYPE SLIS_FIELDCAT_ALV.
    CLEAR CAT.
    ENDFORM. " INITIALIZE_FIELDCAT
    *& Form GET_ORDERS
    text
    FORM GET_ORDERS.
    SELECT AUFNR MATNR BDMNG MEINS ERFMG ERFME
    FROM RESB
    APPENDING TABLE OUT
    WHERE XLOEK EQ SPACE " deletion indicator
    AND XWAOK EQ 'X' " goods movement indicator
    AND WERKS IN S_WERKS " plant
    AND BDTER IN S_BDTER " req. date
    AND AUFNR IN S_AUFNR. " pr. order
    ENDFORM. " GET_ORDERS
    *& Form GET_MATERIAL_DESCRIPTION
    text
    FORM GET_MATERIAL_DESCRIPTION.
    SORT OUT BY MATNR.
    LOOP AT OUT.
    SELECT SINGLE MAKTX
    INTO OUT-MAKTX
    FROM MAKT
    WHERE MATNR EQ OUT-MATNR
    AND SPRAS EQ 'EN'.
    MODIFY OUT.
    ENDLOOP.
    SORT OUT BY AUFNR MATNR.
    ENDFORM. " GET_MATERIAL_DESCRIPTION
    FORM TOP_OF_PAGE *
    FORM TOP_OF_PAGE.
    DATA: L_POS TYPE P.
    first line
    WRITE:/ TEXT-001. " Plant:
    IF S_WERKS-HIGH NE SPACE.
    WRITE: S_WERKS-LOW, TEXT-TO1, S_WERKS-HIGH.
    ELSEIF S_WERKS-LOW NE SPACE.
    LOOP AT S_WERKS.
    WRITE: S_WERKS-LOW.
    ENDLOOP.
    ELSEIF S_WERKS-LOW EQ SPACE.
    WRITE: TEXT-ALL.
    ENDIF.
    L_POS = ( SY-LINSZ DIV 2 ) - ( STRLEN( TEXT-TIT ) DIV 2 ).
    POSITION L_POS. WRITE: TEXT-TIT.
    L_POS = SY-LINSZ - 20.
    POSITION L_POS. WRITE: TEXT-011, SY-UNAME RIGHT-JUSTIFIED. " User:
    second line
    WRITE:/ TEXT-002. " Order:
    IF S_AUFNR-HIGH NE SPACE.
    WRITE: S_AUFNR-LOW, TEXT-TO1, S_AUFNR-HIGH.
    ELSEIF S_AUFNR-LOW NE SPACE.
    LOOP AT S_AUFNR.
    WRITE: S_AUFNR-LOW.
    ENDLOOP.
    ELSEIF S_AUFNR-LOW EQ SPACE.
    WRITE: TEXT-ALL.
    ENDIF.
    L_POS = SY-LINSZ - 20.
    POSITION L_POS. WRITE: TEXT-012,SY-DATUM. " Date:
    third line
    WRITE:/ TEXT-003. " Req. Date:
    IF S_BDTER-HIGH(1) NE '0'.
    WRITE: S_BDTER-LOW, TEXT-TO1, S_BDTER-HIGH.
    ELSEIF S_BDTER-LOW(1) NE '0'.
    LOOP AT S_BDTER.
    WRITE: S_BDTER-LOW.
    ENDLOOP.
    ELSEIF S_BDTER-LOW(1) EQ '0'.
    WRITE: TEXT-ALL.
    ENDIF.
    L_POS = SY-LINSZ - 20.
    POSITION L_POS. WRITE: TEXT-013, SY-PAGNO. " Page:
    ENDFORM. " TOP_OF_PAGE
    FORM END_OF_LIST *
    FORM END_OF_LIST.
    DATA: L_POS TYPE P.
    ULINE.
    WRITE:/ '|', TEXT-021. " Delivered by:
    L_POS = SY-LINSZ DIV 2.
    POSITION L_POS. WRITE: '|', TEXT-031. " Received by:
    L_POS = SY-LINSZ.
    POSITION L_POS. WRITE: '|'.
    WRITE:/ '|'.
    L_POS = SY-LINSZ DIV 2.
    POSITION L_POS. WRITE: '|'.
    L_POS = SY-LINSZ.
    POSITION L_POS. WRITE: '|'.
    ULINE.
    WRITE:/ '|', TEXT-012. " Date:
    L_POS = SY-LINSZ DIV 2.
    POSITION L_POS. WRITE: '|', TEXT-012. " Date:
    L_POS = SY-LINSZ.
    POSITION L_POS. WRITE: '|'.
    WRITE:/ '|'.
    L_POS = SY-LINSZ DIV 2.
    POSITION L_POS. WRITE: '|'.
    L_POS = SY-LINSZ.
    POSITION L_POS. WRITE: '|'.
    ULINE.
    ENDFORM. " END_OF_LIST
    *& Form WRITE_USING_ALV
    text
    FORM WRITE_USING_ALV.
    Look this code*****
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
    EXPORTING
    I_PROGRAM_NAME = REPNAME
    I_INTERNAL_TABNAME = 'OUT'
    I_INCLNAME = REPNAME
    CHANGING
    CT_FIELDCAT = FIELDTAB.
    IF SY-SUBRC 0.
    WRITE: 'SY-SUBRC: ', SY-SUBRC,
    'REUSE_ALV_FIELDCATALOG_MERGE'.
    ENDIF.
    LOOk this code also.*********
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
    I_CALLBACK_PROGRAM = REPNAME
    i_callback_pf_status_set = 'PF_STATUS_SET'
    i_callback_user_command = 'USER_COMMAND'
    I_STRUCTURE_NAME = 'OUT'
    IS_LAYOUT = LAYOUT
    IT_FIELDCAT = FIELDTAB
    I_DEFAULT = 'A'
    I_SAVE = G_SAVE
    IS_VARIANT = G_VARIANT
    IT_EVENTS = EVENTS[]
    IS_PRINT = PRINTS
    TABLES
    T_OUTTAB = OUT.
    IF SY-SUBRC 0.
    WRITE: 'SY-SUBRC: ', SY-SUBRC, 'REUSE_ALV_LIST_DISPLAY'.
    ENDIF.
    ENDFORM. " WRITE_USING_ALV
    ***************report over***************
    HOPE THIS CODE HELPS U
    Reward if its useful.............
    thanks and regards
    suma sailaja

  • Change grid size together with the paths sticking to it

    Hi! This is my first question in the Adobe forums!
    I have made a simple score in my own music notation with the help of the grid in AI CS7. However, I set the wrong page size and now I have to everything over again. My question is: Can I fit thwe whole thing on an art board with a smaller size along with the grid? I want to keep everything but the size of the art board. So how do I change the grid ALONG with the objects and lines that are "stuck" to it? I hope my question is clear. Let me know if it isnt and I will clarify.

    I think I fixed it. I will try later today to set the grid size the same as the width of the page and subdivide it this way. It would solve it if I could SET the artboard width to be anything: 1cm, 30cm, 100000 cm without changing the size of it.
    -Joakim
    Den 9. juni 2014 kl. 23:47 skrev Jacob Bugge <[email protected]>:
    change grid size together with the paths sticking to it
    created by Jacob Bugge in Illustrator - View the full discussion
    Joakim,
    As mentioned, the grid is a rather fluid thing, if it is the one I presume so you cannot rely on it for alignment and the like.
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6445830#6445830
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Illustrator by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Crystal dashboard viewer

    Hi, I'm working with SAP Business One and we are looking for a report viewer solution that can run an RPT file or Xcelcius dashboard in fullscreen on an LCD monitor.
    It would need to have auto refresh functionality as well.  We want to show orders in a queue in real time.
    Is there anything out there that can do that?
    Thanks!
    Mike

    Mike,
    Third Wave's Advanced Productivity Pack can provide this functionality.    instead of using a crystal viewer, i would suggest that you use our interactive dashboard with Gold Arrow drill back into B1. 
    APP dashboards use a standard B1 query to display the data.  the dashboard can include graphs and/or data grids,  They can also be setup to auto refresh.  in your example you may just want a data grid that shows the orders.   the sap query would define which columns are included.  
    A dashboard can also be interactive, which means that i can click on a part the graph and the data grid will be updated to show the detail.    for example the graph might show the total amount of orders that needs to ship each day this week.   When i click on the bar for wednesday, the data grid provides a list of the orders that are to ship that day.  the data grid can have drill down arrows back to the transaction, BP, item etc.
    the Advanced Productivity pack does not require additional Crystal Dashboard viewer licenses.  It will also take a significantly less time to setup dashboards with the APP than a CrystalDashboard.   the added benefit is that APP also provide the most comprehensive document/report delivery system available for Business One.  there are  number of other really neat features that it also includes. 
    this will provide a much better option because they can drill back to B1 forms. 
    this video provides a good overview - http://www.youtube.com/watch?v=hlLQQyxL4Us
    additional information can be found at http://www.twbs.com/index.php/solutions/third-wave-products
    Korey
    korey.lind @twbs.comn

  • How to display grid lines in list view please help

    Hello,
    What should I do if I would like do display grid lines in list view. I've read related topics but I stil don't know how to do it. I use Sharepoint Designer. Please help
    Regards

    Hi,
    You need to modify default XSLT of listview webpart. Open your page in designer and use below jquery.
    <!–ADJUST TABLE COLUMN WIDTH–>
    <script src=”http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js“></script>
    <script>
    $(function(){
    $(“tr.ms-viewheadertr th:contains(‘Title’)”, “#MSO_ContentTable”).css(“width”, “50px”);
    $(“tr.ms-viewheadertr th:contains(‘Assigned To’)”, “#MSO_ContentTable”).css(“width”, “300px”);
    </script>
    Check this for more info about steps:
    http://jshidell.com/2010/09/19/adjusting-sharepoint-list-columns-using-jquery/
    You can also look into this MSDN article for more customization:
    http://msdn.microsoft.com/en-us/library/ff630941.aspx#odc_sp14_qn_UsingSharePointDesigner2010WorkwithWebParts_CreateXSLTListViewWebPart.
    Hope it could help
    Cheers, Hemendra-MCTS "Yesterday is just a memory,Tomorrow we may never see"

  • How to place the "go" button at left size in dashboard prompt

    how to place the "go" button at left size in dashboard prompt

    Change your code to this and it should work:
    PARAMETERS : p_date LIKE sy-datum ,
                  p_uname LIKE sy-uname.
    DATA: field1(8) TYPE c .
    AT SELECTION-SCREEN .
       IF p_uname IS INITIAL.
         field1 = 'P_UNAME'.
         SET CURSOR FIELD field1 .
         MESSAGE e001.
       ENDIF .
    I think you need to have the MESSAGE statement (or something similar).  If you don't have a message class assigned to your program, instead of
    MESSAGE e001.
    you can use
    MESSAGE 'Please fill in all required fields' TYPE 'E'.
    - April
    Message was edited by:
            April King

  • In the new iOS-7 Safari, has the "reader" function been changed to eliminate the option to modify font size (and hence to modify the number of words per line), or is it just that I can't find how to do that?

    In the new iOS-7 Safari, has the "reader" function been changed to eliminate the option to modify font size (and hence to modify the number of words per line), or is it just that I can't find how to do that?

    iOS 7
    Seperate text size modification is no longer available in Safari Reafer.
    Use Settings.
    Settings >General > Text Size

  • Grid size [VI Editor Options] property

    Hello Quick question about VI programmatic Editing, specifically the [Editor Options] section.
    I have not been able to find the property/method for the block diagram/ front panel 'editor grid size'. In the UI the setting is found on this page:
    When working with old code, the first thing I do is up these values to the x86 limit (4095) so I only see the origin X,Y lines and not the fine scale grid*. This afternoon I am looking for a way to Mass Edit a .llb or folder of .VIs with VI editor properties/methods but [A] could not find them myself and [B] Could not find anything online about them.
    NOTE: This post will be managed, I will post any solutions I find in this section, or after 1 week post what else I tried before giving up.
    * Why don't I just disable the grid? The origin Lines are very useful for my current project, the grid is not. 

    Did nothing come up when you were forced to search the forum for this feature?  Because not so long ago I posted the same question.  Turns out I was your XKCD, just not from 2003.
    http://forums.ni.com/t5/LabVIEW/Scripting-Style-Control-Grid-Size/td-p/3122727
    It got no traction so I think someone needs to make an idea exchange idea.  If you make it I'll vote for it...if I make it will you vote for it?
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • Setting font size for code view

    On my 19" desktop monitor the text size in code view is easy enough to read, but on my hi resolution 17" laptop it is really, really tiny. I can't find any prefs setting or another way to make the font for code view larger. Is there such a setting somewhere? (Yes, I can change the resolution settings for the laptop but this is not preferable because the screen is blurry at anything other than the native 1920 x 1200 pixels.) Thanks.

    Play around with the preferences shown above to see what works for you.  I changed mine recently to use Consalas font and it's much better than the default  :-)
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://www.perrelink.com.au
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    http://csstemplates.com.au/
    http://twitter.com/nadiap

  • Dynamically set the size of the VIEW

    Hello,
    I am looking to set the size of my VIEW which is called in following way:
    IF iv_show_in_pop_up EQ abap_true.
        wd_this->raise_simulation_pop_up( ).
    I want to set of the size of the VIEW if it a pop-up.
    ENDIF.
    How can i get access to the view and set the size. Please Help.
    Regards,
    Piyush

    Hi Piyush,
    Check what Anzy has to say in [here|https://forums.sdn.sap.com/click.jspa?searchID=18635339&messageID=3289078]:
    "You have to go to specific view , which will be embedded in the pop up window.In the view go to ROOTUIELEMENTCONTAINER and set the width and height.This way you can restrict the size of the pop up window."
    This is [another approach|https://forums.sdn.sap.com/click.jspa?searchID=18635339&messageID=5836334] suggested by Abhimanyu Lagishetty for dynamically setting the size of your window:
    "Pass the URL like this to the create_external_window
    javascript:window.moveTo(0,0);window.resizeTo(screen.width,screen.height);window.location.href="http://google.co.in";
    Instead of http://google.co.in write your URL it will maximize the window"
    Regards,
    Uday

  • Scripting Style Control Grid Size

    Is there scripting functions, to allow me to edit a VI's alignment grid size, and control style for creating controls/indicators?  These setting are saved in each VI under the VI Properties, under the Editor Options.  I looked around and couldn't find them.  Thanks.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

    Cross linking with THIS and looking forward to the Idea Exchange post. 

  • New lot size in MRP view

    Hi ALL
    Any one can suggest how can we configure a new lot size for  MRP view in ECC.
    regards
    Vikas

    Hello Vikas,
    I am not too sure ? Can you not change the field ? It doesnot need any cofiguration on the MRP view level. The value needs to be set
    Thanks
    Amber

Maybe you are looking for

  • HT4527 I am trying to transfer music to a new computer using homeshare but it is not working.

    I can see the library from the "old" computer and can "select all" as the online help suggests. There is not an "import" button on the bottom right of itunes as the online help suggests and I don't see any options on the drop down menus to do this. 

  • Asking for source code !

    i wish to have a similar source code for this iphone application : http://itunes.apple.com/kw/app/al-bukhari/id323497164?mt=8 and i wish it to be fit for sdk xcode to be edited by me to make many applications with different text inside it ... and wit

  • Support for RAW Format: Sony SLT A57 - available ?

    Hello ! does anybody know when the Sony SLT A57 camera will be supported by Aperture ? (my current Aperture version 3.2.3; Digital Camera RAW 3.12.0). Peter

  • Space used by tables

    in a production environment we are short of disk space. we need to know which tables are occupying the high amount of space from all the tablespaces present in the database, so that we can delete some data (if possible ) from those tables. any sql qu

  • Odd icon in the status bar.

    Hi all, I have just returned from Stockholm and have noticed the 'phone and arrow' icon pictured below. Wondering if anyone knows what it means, if it costs me and how I find what's causing it. Cheers, Josh