Hide / show grid in a graph programmaticly

I would like to hide / show the grid (minor / major) progammaticly. I try to create a property node, but I don't find the way to access the 'hide' property... Thanks.

I might need corrected, but I don't believe you can change the 'minor' grid color, but yes on the 'major'.
Its a Write-to property node called Grid colors, and you can have the X & Y grids as separate or Clustered together elements. You'll need to add 2 color boxes [Controls > Numeric palette] to your front panel (X & Y). The user's selection is a numeric value sent to the property node(s) you wired.
Good Luck with it, Doug

Similar Messages

  • Hide/Show cfgrid

    Is there any way to show a hidden cfgrid based
    on an OnChange event from another cfgrid? I've tried using
    a javascript function call.
    <!--- First grid excerpt  --->...
    bind="cfc:ATC._cfc.GetRCPsForFTEs.GetFTEs({cfgridpage},
           {cfgridpagesize},{cfgridsortcolumn},{cfgridsortdirection},{RCPs4FTEs.RCP_ID})"
          onChange="javascript:toggleEdit(EditTog)">
    <!--- 2nd grid excerpt  --->
    <!--- hide/show grid  --->
    <script language="JavaScript">
    function ChangeGrid(obj) {
       if (document.getElementById(obj).style.display == ")
       {document.getElementById(obj).style.display = 'none';}
       else
       {document.getElementById(obj).style.display = ";}
       alert("function ran");
    </script>
    If not,
    any suggestions on how I could show the hidden
    cfgrid from another cfgrid by some other method?
    Thanks

    Sorry. My previous post was incomplete.
    This should be the full message:
    Is There any way to show a hidden cfgrid based on an OnChange event from another cfgrid?
    I tried using a javascript function:
    <!--- show/hide cfgrid  --->
    <script language="JavaScript">
    function ToggleEdit(obj) {
       if (document.getElementById(obj).style.display == ")
       {document.getElementById(obj).style.display = 'none';}
       else
       {document.getElementById(obj).style.display = ";}
    </script>
    <!--- 1st grid excerpt  --->
    bind="cfc:ATC._cfc.GetRCPsForFTEs.GetFTEs({cfgridpage},
           {cfgridpagesize},{cfgridsortcolumn},{cfgridsortdirection},{RCPs4FTEs.RCP_ID})"
          onChange="javascript:toggleEdit(EditTog)">
    <!--- 2nd grid excerpt  --->
    <div id="EditTog" style="display:none">
       <cfform  name="FTE_EDIT">
       <!--- 7/12/10 Update an FTE chosen from the 2nd grid.  --->
    <!---                 values="#ValueList(qChosenFTE.Cat_Name)#"
                  valuesdisplay="#ValueList(qChosenFTE.Cat_Name)#" --->
           <cfgrid name= "FTE_EDIT"
    Any suggestions on what might work?
    Thanks.

  • In numbers, can i hide rows of data in a chart and still have that data show up in my graph?

    In numbers, can i hide rows of data in a chart and still have that data show up in my graph?

    yes.
    To hide rows (or columns), select the rows (or columns), then right click in the row (or column) tab to expose the contextual menu.  Select the menu item "Hide ..."

  • Why does default keyboard shortcut for show/hide baseline grid (opt+command+') not work?

    Why does default keyboard shortcut for show/hide baseline grid (opt+command+') not work?

    Here's where you need to change the settings: System Preferences > Keyboard > Keyboard Shortcuts:

  • Hide Show, Programmatically in Seeded page.

    Hi All,
    I have to add one hide show region in a standard page advance table region. The following are the steps i followed.
    Created one custom region for the detail Region.
    Created the custom VO for detail region.
    Created a vie link between the seeded VO and custom VO
    Imported this custom region
    Extended and substituted the base page VO to add one more column for the hide/show.
    Extending the controller i applied the detail Region to the base page Table using setDetail method.
    When i run the page, Its showing the hide/show column and also the detail region - but its throwing the error View object not found ( Custom VO for custom detail region) and showing no search conducted in detail table. Since the Application module of the page is Root Application Module, i cant extend it. So i cant substitute the AM.
    Is the approach i am trying to follow is correct?? Any help/suggestion will be highly appreciated.
    Regards,
    Ram

    Urgent Issue... ..
    Any help Please..

  • How can I add axis to an XY-graph programmatically (in LV 6i)?

    I am currently using LabVIEW 6i to make a flexible graph window, which can be called and controlled from another VI. It's easy to send commands to the graph window over a queue interface (enabling things like adding and removing plots, changing the names, etc.)
    However, I would also like to add/remove/assign axis like this (i.e. when the program is running). It seems to me that there isn't an attribute or method available on the XY-graph that will allow this.
    My best solution so far is to have a maximum number of axis present, and then hide/show them when axis are removed/created. However, this triggers a bug in LV (AFAIK) when the axis are shown/hidden out of order (they will be shown
    on top of each other). Now this can be solved by setting the positions/sizes of all axis every time, but that seems like a lot of work...
    Is there a way to add/remove axis to an XY-graph programmatically (in LabVIEW 6i)?

    I have not found a way to programmatically create/remove scales in LabVIEW.
    In regards to the error, I would suggest updating to LabVIEW 6.0.2. I wrote a simple VI that tested this funcitonality and did not have any problems. The link to the 6.0.2 update is:
    http://digital.ni.com/softlib.nsf/websearch/F983BDA17B8F401B862569EC005A11C2
    Chris_Mitchell
    Product Development Engineer
    Certified LabVIEW Architect

  • Showing grid lines as dashed lines

    Dear All,
    i am using a waveform chart to plot my data .. i want to insert grid inside my chart .
    There are 3 different options for inserting grids in d chart . 
    is dere any way i can change the style of lines of grids ?? i want to see them as dashed lines rather than a continous line ... 
    Thanks
    Ritesh

    Hi,
    the solution to it was a bit complicated .. i had to search for examples to get my data on the wavefrom graph... 
    thing is like dis. i have to store the data of different channels on different clusters and join the clustes using Build Array ... 
    Now dat i am able to show the data on graph(atleast) its not showing it continously .. the graph is plotting all d data at the starting point, i.e 0 and not moving forward .. 
    I am posting the Block Diagram as well as the Output that i am getting .. 
    Regarding Block Diargram - I am reading a text file containing the waveform data.. it has N number of rows.. each row has 4 columns containing data of 4 different channels .
    i read the file "line by line" and store the data in 4 diff arrays(b,c,d,e). then i cluster these 4 arrays separately and build array using dese 4 clusters .. and d output of the array is plotted on the graph den.. 
    Pl. have a look at it and see if dere's any solution to it .. 
    Thanks
    Attachments:
    Block Diagram.JPG ‏36 KB
    Output.JPG ‏17 KB

  • Plot fill hides the grid.

    I want to use color regions on my graph. But, if I use a background image, it doesn't adjust with the scale.
    If I use plot fill and create data arrays for my boundaries, it hides the grid.
    Does anyone know how to accomplish this? (see attached pictures)
    Attachments:
    NI Waveform Graph.png ‏66 KB
    No Grid.png ‏28 KB

    Here are some options, although I don't particularly like any of them. I think I would go with one, because it's the simplest:
    Use the BG image, but generate it yourself so that it matches the scale. To do this, you can call the Map Coords to XY method of the graph, which will tell you the size in pixels of each region, which can then be used to build the picture using the picture VIs. The main reason I don't like this is that it's not entirely clear when to do this (when new data comes in, when the user changes the scale, etc.) and that it depends on the data being displayed before you can get the correct values. These can probably be handled if you do this in a loop every N ms and if you defer updates before writing the data to the graph.
    Use the picture control VIs to build the entire graph. Then, you can simply draw the scale on top of the BG. There's a palette of VIs for drawing graphs.
    Use .NET controls. There's an example of using a chart library in the UI interest community.
    Use a 3D picture control, which I believe supports transparency. I'm not sure how easy it would be to construct all the graph pieces.
    Try to take over the world!

  • Can we Hide/Show the Mouse with an Action or a Script?

    Hello All,
    I am developing a simulation using click boxes in Captivate 4, on Windows XP. If the user doesn't click the right place, the slide continues, and shows the user what to do. If the user clicks the correct place, the simulation goes to the next slide directly. The problem is, successful or not, when the user goes to the next slide, the recorded mouse pointer displays on the slide. If I hide the mouse, then it remains hidden even if the user clicks outside the box too many times and the simulation continues, to show the user what to do. It's as if things on the screen just select or click themselves.
    I know mouse visibility is treated differently in the timeline than other objects. That's not a particularly big deal, so long as there is some way to control the mouse visibility for simulations (one of Captivate's big selling points). Is there a way to control the mouse visibility with an Action or with Script?
    The current settings for my click boxes are:
    I tried to assign an Action (multiple actions, really) to hide, show, enable, or disable the mouse but the mouse doesn't seem to be available to do so!
    Am I missing something?
    Thanks,
    ~jeff

    Hi there
    Nope, the mouse is an all or nothing object. It's either visible or not and it's your choice as to what you show. No way I'm aware of to programmatically display it. All I might suggest is that if you want to show the user the mouse moving, duplicate the slide so that if they fail to click the right area, the duplicated slide has the mouse moving to demonstrate.
    Oh, and consider submitting a Wish Form to ask for the capability in some future version of Captivate.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • "Show Grid" in a GridBagLayout

    I'm trying to show the grid for a GridBagLayout in a the Java Visual Editor for Swing,
    but I don't find any "Show Grid" option in the popup menu, as it's mentioned in the JDev help.
    I'm using JDeveloper 10.1.3.
    Thanks in advance.

    Same here. Even in "Design" menu items "Show Grid" and "Hide Grid" is disabled.

  • Showing grids in JTable

    I m having a jtable and there are 4 buttons
    hide / show vertical grid
    hide / show horixintal grid
    i have done the needful and also on click of button called aprt API like setShowHorizontalLines(true) , setShowVerticalLines(false) and so on. I m not able to see the effect i think there is some problem in painting or something esle
    can anyone please guide me
    thanks
    pranav

    I m not painting it at all. Do i need to and if yes please tell me what all to be done in paint
    i dont know what attribute u r talking about
    pranav

  • InDesign Leopard Hide Show Baseline

    Has anyone been having a problem with the hide shot baseline grid shortcut keys under Leopard? I can hide show through the menu but not with shortcuts keys.
    Possible bug?

    Strange. I'm on Leopard on my MacBook Pro. Mac OS X 10.5.2. I have no problem using Cmd+Option+' to toggle on/off baseline grid.
    Check your System Preferences > Keyboard and Mouse > Keyboard Shortcuts to make sure the OS isn't capturing the keystroke for something else.
    Did you try editing the keyboard shortcut to something else (Edit > Keyboard Shortcut)?

  • Hide/Show pixel measurements

    It would be nice to have a way to Hide/Show the pixel measurements that are at the top and to the left of every object when selected.
    Way too much going on on-screen with the border highlights, transparancy when moving object, the grids, etc. Yes. I did notice you can turn a few of these off, except for the "bluish pixel measurements".
    My feedback/Feature Request!
    Thanks.

    Thanks for the feedback. Can you also post this as an Idea :http://forums.adobe.com/community/create-idea!input.jspa?container=4860&containerType=14
    When it's an idea, other people can vote for it and you can watch the progress of other community ideas and feature requests getting implemented.
    Thanks for using Reflow and sharing your throughts and ideas with us!

  • Problem in Hide/Show in a Table Row

    Hi,
    i have to create 4 pages and each page has a table region with displaying records and a column "LINK" to go to the next page with the parameters from that record. Every link has a batchId and one another Id as parameter to next page. The next page reads the parameters and queries the corresponding table for details of that results table region contained in that page.
    Thus i have 4 pages with 4 table regions and each table region is associated with a view object which is based on an EO connected with a database table. (4 VO's).
    Now in every table i have a detail region (hide/show) which shows error records for a row ....
    thus there are 4 ViewLinks for all 4 VO to a single ERROR VO.
    I have 4 instances of ERRORVO in AM like ERRORVO1, ERRORVO2, ERRORVO3, ERRORVO4.
    Now, the hide/show region is working properly on the first 3 pages with proper navigation to pages.
    Then, i created the 4th page and created the table region in the 4th page.
    From the 3rd page i have passed 2 parameters through the link and also retainAM=Y.
    i have captured both parametres and call a method to populate data in table of 4th page.
    Successfully done..running properly....
    Now i added the detail region which is a table as previous pages in the 4th page with ERRORVO4...
    Then when i run the page i get the 1st page and thrugh link i move to 2nd and to 3rd page. But when i click on the link on 3rd page to move to 4th page i m getting "NullPointerException" with "check Inner table properties"
    Now i removed the detail region (Hide/show) only from the 4th page and again run the page . its working properly for all 4 pages with proper navigation but i am not able to see errors with hide/show on 4th page and it is required.
    i m not getting what could be the reason...
    do i need to remove retainAM=Y from the page navigation links.?????
    and is there anything like we cant create more no. of instances (4) of a single VO in an AM.....????
    Any alternative for showing the errors on 4th page with Hide/Show or without Hide/Show????

    Thiago,
    Thanks for the quick reply.
    I am now getting the following error below:
    Am I suppose to add another field to my VO select?
    oracle.apps.fnd.framework.OAException: Detail View Attribute Name is not set for the table even though a detail named child has been specified. Please specify a Boolean or String ("Y" or "N") view attribute for this table property.
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1146)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1794)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:463)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:384)
         at OA.jspService(OA.jsp:40)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:139)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)

  • How to hide/show and move screenelements at runtime

    Hi Guys
        Currently, i have a requirment that, in the same screen, when user choose different different option in the dropdown list, there should be different screenelements and table control with different columns showing below it.
    Now, i have two plans below:
    1), hide/show and move position of screen elements and table control at runtime
    2), call different subscreen
    I hope i can take the first way since the second way will modify structure of program ( As it is infotype screen ), any one knows how to implement the first solution?

    Hi,
    I would suggest you to call different subscreens and load them dynamically based on your parameters.Since different subscreen are called your coding and functionality could also be seperated by writing in the PAI and PBO of the correspondiong Screens.
    if you have decided to go by your first method then try the below code.
    a) if it is normal UI elements like text box etc
    LOOP AT SCREEN.
        IF <var> = ' value '.
            screen-invisible = '0'.
            MODIFY SCREEN.
      endif
    ENDLOOP.
    Here <var> refers to the screen field name and value refers to its value.
    b) To hide columns in a Table control.
    DATA cols LIKE LINE OF tc-cols.
      LOOP AT tc-cols INTO cols.
        IF cols-screen-group1 = 'G1'.
          cols-invisible = 'X'. "HIDE THIS COLUMN
          MODIFY tc-cols
          FROM cols
          TRANSPORTING invisible.
        ENDIF.
        CLEAR cols.
      ENDLOOP.
    PS: here TC refers to the name of the table control.
    Lemme know if you face any problems.
    Cheers,
    RK

Maybe you are looking for

  • How do i keep itunes off of my C drive

    so im still going through the problem that itunes wants to be on my C drive and wont go away. i installed it to my D drive, had a problem earlier today with low space on my C and i see that itunes has set itself up in my "my music" folder and its ove

  • A pdf with two forms to be saved out separately...

    I have a request from my customers to create a single PDF (price list) that also includes two separate forms. They want to be able to fill out each form within the single price list PDF document, but save each of the forms out separately from each ot

  • HELP wrong warranty expiring date!

    Hi I'm Italian so I'm sorry for my English Language. I recently bought a third gen Nano ( on 31st december 2007 ) but I got a problem with the display so I contacted the online support on the apple website. while doing this I had to check my warranty

  • Using a dial-up modem

    I guess I'm posting this out of sheer desperation, although it sounds like there isn't anything that can be done.  I moved to the DC area last November and before signing an 18-month lease, I contacted Verizon directly, and my building also contacted

  • Photoshop CS6 icon disappeared after update

    Hi; Photoshop CS6 icon dissappered from dock and launchpad after today's update. Also, when I launch the program, I can't use any tool or function! all dimmed. I'm using OS X Mountain Lion. Any idea? Thanks