XY Graph-Setting Y-Scale visible to False still Shows Corresponding Y scale Max and Min

Hi Guys,
I use XY graph to display the data with 3 Y-scales.
When I set any Y scale Visiblity property to False,its still display the Y scale Max and Min range Lines in plot area of the  Graph and making cross line or extra parralel line with other visible scales.
Attached the screen shot  for ref.
And I know the cross line may be due to different Y scales range setting.But XY graph should not display the invisible Y scales and its property  as well.
please provide your suggestions to avoid that.
Solved!
Go to Solution.

The scales and the lines associated with those scales are separate properties. I have never tried it, and right now I am not at a computer, but there should be properties for setting the grid line colors. Set them to transparent.
Mike...
Certified Professional Instructor
Certified LabVIEW Architect
LabVIEW Champion
"... after all, He's not a tame lion..."
Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

Similar Messages

  • Sound stops when set flash obj visibility to false on IE

    How can I prevent sound from stopping on IE when I set a
    flash <object> visibility to false, through javascript ?
    i.e.: document.getElementById('flashObj').style.visibility =
    'false';
    All other web browsers behave normally (they just hide the
    player, sound, as the movie, is keep playing on...).
    Any ideas?

    "yduab" <[email protected]> wrote in message
    news:e7oua3$hsk$[email protected]..
    >I made a flash animation with a backgroung music loop and
    buttons. When a
    > button is clicked, a video file embeded in a swf plays
    in a movieclip on the
    > stage. Also, I set the background music volume to 0 as
    to listen to the video
    > sound. The problem is that when the background music
    volume is changed, the
    > video plays but the audio changes the same. I tried to
    stop the background
    > music, and then the video sound also stops!
    > Can someone help?
    > Here is my code:
    > _root.my_sound = new Sound();
    > _root.my_sound.attachSound("music.mp3");
    > _root.my_sound.start(0,1000);
    > }
    > _root.["bt_mc"].onPress = function(){
    > _root.my_sound.setVolume(0); // or
    _root.my_sound.stop();
    > _root.videoDisplay.loadMovie(this.videoclip);
    //_root.videoDisplay is the
    > target mc
    > }
    To have separate volume levels you have to attach the sound
    objects to different movieclips like this..
    _root.my_sound = new Sound(one_mc);
    The movieclip can be just an empty clip that you make with
    createEmptyMovieClip.
    tralfaz

  • I am upgrading wi-fi router from Airport Express to Airport Extreme. I followed set up instructions yet I am still getting the flashing amber light and cannot setup (using manual setup or the continue button).  What should I do??

    Hello,
    I am upgrading my wireless router from an Airport Express to an Airport Extreme.  After disconnecting the Express and plugging the Extreme via ethernet cable to the modem, I am receiving a flashing amber light after connecting the power source.  I also reset the modem while the Extreme was still powered and plugged into the modem, but no luck.  I also tried resetting the modem and the Extreme and still no resolution.  Please advise.  Thank you!

    This error usually occurs when the Windows Firewall and/or anti-virus software blocks the connection attempt from the PC to the AirPort Extreme.
    Microsoft Security Essentials can do the same thing.
    Things would be much easier if you had a Mac or iPhone or iPad to set up the AirPort Extreme. Otherwise try turning off the Windows Firewall and Anti-Virus programs, etc on the PC.
    Restart the PC, then see if the PC can contact the AiPort Extreme. It will likely help to connect an Ethernet cable from the PC to one of the LAN <-> ports on the AirPort Extreme. You can disconnect the Ethernet cable once the AirPort Extreme has been configured.
    Re-enable the Windows Firewall, Anti-Virus, etc and restart the PC.

  • Outlook 2013 set as default mail client but still shows error box saying it isn't?

    We have recently installed Office 2013 64-bit on 4 servers. We previously used Outlook 2007 64-bit.
    We set Outlook 2013 as the default mail client and do not have another mail client installed on the servers. However when you first login you get an error message box that says you have no default mail client 'either there is no default mail client or the
    current mail client cannot fulfill the messaging request'.
    I have checked all defaults to be for Outlook 2013.
    How can I solve this issue? I am an administrator.

    Try different Method to set Outlook 2013 as the default mail client to check the result. Thanks.
    Method 1:Set as default within outlook.
    -File > Options > General Tab >  select the "Make Outlook the default program for E-mail, Contacts, and Calendar"
    check box.
    Method 2: Set as default from the internet explorer.
    -Tool > Internet Options > Programs Tab > Set programs 
    Method 3: Set as default from control panel.
    1.Navigate to Control Panel\Default Programs\Set Default Programs
    2.Click on the outlook icon on the left hand side.
    3.Set as default.
    We may also try to create anther windows user profile in the same machine to check if the issue still persists. Thanks.
    Tony Chen
    TechNet Community Support

  • Setting the max and min bounds of a result set

    I'm trying to set the upper and lower bound values of a result set. Meaning, I want to limit the values in my result set to not be below/above a certain number, BUT I want any number in my result set that is below/above the lower/upper bound that i have designated to be decoded to the lower/upper bound number that I have designated. Here's an example to help clarify:
    WITH temp_table AS
    SELECT 1231.12 AS col FROM dual UNION ALL
    SELECT 1001.00 FROM dual UNION ALL
    SELECT -32.0 FROM dual UNION ALL
    SELECT -3.0 FROM dual UNION ALL
    SELECT 332.0 FROM dual UNION ALL
    SELECT 211.0 FROM dual
    SELECT CASE WHEN col < 0 -- 0 is the lower bound
                THEN
                     0
                WHEN col > 1000 -- 1000 is the upper bound
                THEN
                     1000
                ELSE
                     col
           END as desired_result
    FROM   temp_tabledesired result set:
            DESIRED_RESULT
         1000
         1000     
            0
         0
         332
         211I was wondering if there was another function or method of achieving my desired result set without having to use a CASE statement? I have to do this to several columns, and it doesn't seem very efficient to throw a CASE statement around each one.

    LEAST and GREATEST will do that too :
    SQL> WITH temp_table AS
      2  (
      3   SELECT 1231.12 AS col FROM dual UNION ALL
      4   SELECT 1001.00 FROM dual UNION ALL
      5   SELECT -32.0 FROM dual UNION ALL
      6   SELECT -3.0 FROM dual UNION ALL
      7   SELECT 332.0 FROM dual UNION ALL
      8   SELECT 211.0 FROM dual
      9   )
    10  SELECT least(greatest(col, 0), 1000)
    11  FROM temp_table
    12  ;
    LEAST(GREATEST(COL,0),1000)
                           1000
                           1000
                              0
                              0
                            332
                            211
    6 rows selected
    I have to do this to several columns, and it doesn't seem very efficient to throw a CASE statement around each one.Any test case showing CASE as not efficient?
    Edited by: odie_63 on 25 juil. 2012 23:20

  • HideEffect does not play when setting visible to false

    HY,
    If i set a fade effect on WindowedApplication on hideEffect when i put visible to false, the fade effect does not run anymore. I found this similar problem in the bug tracker: http://bugs.adobe.com/jira/browse/SDK-14615
    I use Flex builder 3 with the sdk 3.2.0, i don't understand why this bug is not resolved at this time.
    thanks for you help

    Hi,
    If you are in a country that permits redownloads, delete track and go to iTunes Store > purchased and redownload. http://support.apple.com/kb/HT2519
    Jim

  • I set Application.Visible is false,but Toolbar still Visible

    I set Application.Visible is false, the window of PS will hidden.
    But when I run an action the toollbar will showon, that looks strange.
    Is anybody konw how to hidden the toolbar?

    I am having the exact same issue and searching Google for an answer doesn't help.  Please let me know if you figure out a way to hide the toolbar/palette.

  • Set a component visible based on a value of a LOV

    Hi all,
    I am using Jdeveloper 11.1.1.2 and ADFBC.
    I have a panelFormLayout with some fields.
    I have a LOV and I want to set the property visible of a field based on the value of the LOV.
    For example: if LOV = First (value =1) field = visible, if LOV = Second (value =1) field = not visible
    I have created a backing bean of the page with a method that return a boolean, but I don't know how to get the value of the LOV.
    What have I to use? ADFUtils? JSFUtils?
    Here there is my code:
    public class InsMovimento {
    private RichSelectOneChoice soc3;
    public void setSoc3(RichSelectOneChoice soc3) {
    this.soc3 = soc3;
    public RichSelectOneChoice getSoc3() {
    return soc3;
    public boolean isVisiblePanelLottoEScadenza(){
    boolean isVisible = false;
    // ... code to retrieve the value of the LOV
    return isVisible;
    Any suggestions?
    Thank you
    Andrea

    Hi,
    you have 2 options. For both options you need to set autosubmit=true on the LOV field and use the PartialTriggers property on the depedent fields to point to the ID of the LOV. Alo define a value change listener on the LOV field
    Option 1: Create a managed bean reference for the LOV using its binding property. Then, call getValue on it to get the component value
    Option 2: If the component is bound to ADF, you can read the value fom the ADF binding layer
    Option 1 is good to use if for example the "immediate" property on the LOV is set to true so you avoid required field validation problems if the dependent fields have no value though must have one. In this case using a ValueChangeListener on the LOV can be used to read the values, and set the boolean values in the managed bean
    Frank

  • How to set scrollbar to visible or invisible?

    Dear all,
    How to set scrollbar to visible or invisible?
    Thanks

    Duncan's answer will solve your problem
    but how will you display scrollbar thru stacked canvas if your block is already in one stacked or tab page canvas
    so better to create an item set its background color exactly same as your canvas and make bevel property to null and keep that item where you are displaying scrollbar
    and set its visible property to true or false based on your requirement

  • How to set the disable,visible property in declarative components.

    We have used one declarative component. It consists of 5 buttons (add,delete,save,delete,print). In all of our pages, this declarative component is used. We could bind methods and was able to use each pages seperately (by linking the methods in the backing bean)
    But for implementing the DISABLE,VISIBLE properties, we have added the attributes for this and refered this to the corresponding disable and visible property of the button. In the page all these properties where reflected. But at the runtime these buttons are not coming.
    Can anyone advise how can we set the disable,visible property in declarative components.

    Hi vikram ,
    i hvnt initialized the properties ,
    in my declarative component i have one button say Save button and i want to config 2 properties Disable and Visible
    i added two attributes ( java.lang.Boolean ) say disablr_btn ,*visible_btn* and mapped wth the Save button Properties Disabled and Visible using expressions
    Now the button is invisible while running the page.
    if i remove the mapping from properties Disable and visible , the button is visible
    should i init the properties in faces config , i dnt knw hw to init the properties
    pls advice

  • [svn:fx-trunk] 12057: Label (and RichText) will show text as tooltip if truncated and new showTruncationTip flag is set to true  ( defaults to false because Label is often used in skin that have their own tooltip logic ).

    Revision: 12057
    Revision: 12057
    Author:   [email protected]
    Date:     2009-11-20 11:22:05 -0800 (Fri, 20 Nov 2009)
    Log Message:
    Label (and RichText) will show text as tooltip if truncated and new showTruncationTip flag is set to true (defaults to false because Label is often used in skin that have their own tooltip logic).
    QE Notes: New API (showTruncationTip)
    Doc Notes: New API (showTruncationTip)
    Bugs: SDK-23639
    Reviewer: Gordon
    API Change: Yes
    Is noteworthy for integration: Yes
    tests: checkintests mustella/gumbo/components/Button mustella/gumbo/components/Label
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-23639
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/TextBase.as

    Hi blabla12345,
    (untested and without warranty)
    replace this line:
    const sSaveCUBE = "CUBE";
    with this:
    const sSaveCUBE = "cube";
    Have fun

  • I have an iPad with IMAP email accounts set up but I can find no "inbox, drafts, trash" folders anywhere, either on my ipad or desktop Mac.  How can I set them up?  They do not show on my MacMail preferences either and I can find no way to add them.

    I have an iPad with IMAP email accounts set up but can find no "inbox, drafts, trash" folders for each email account anywhere on my iPad or in Mac Mail.   How can I set them up? I can't find anyway to set them up anywhere.  Thanks

    Hello blu monkey,
    I found some resources that I think might help with the visibility of your IMAP email folders on your iPad and Mac.
    On your iPad, you may need to follow the steps in this article to make sure your folders are visible:
    iOS: If IMAP Mail folders are not visible
    http://support.apple.com/kb/HT1393
    On your Mac, I am not sure if you have the sidebar enabled, but you can enable it using the steps in the article below.  When this is showing, you should see your email account listed near the bottom with a triangle next to it.  When the triangle is pointing down, it should show your folders:
    Mail (Mountain Lion): Show or hide the sidebar
    http://support.apple.com/kb/PH11763
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • The new format on FF4 is confusing and difficult to use. Is there a setting where I can change it to show the FF3.6 format?

    Myself and several of my friends were discussing the new Firefox layout for Firefox 4.0, and we find it difficult to use. We would like to have the option of using the new Firefox with the old 3.8 layout. That would make it much easier to use. One of my friends is vision impaired and having become accustomed to the old layout, is finding it almost impossible to transition.
    I have uninstalled FF4.0 and re-installed FF3.8 so that I can have the familiar layout. Others are doing the same.

    If you do not like the new appearance of Firefox 4 then you can change some setting to restore the Firefox 3 appearance.
    You can right click the orange Firefox button to open the toolbar menu.
    * Click the Menu Bar entry to make the Menu Bar visible.
    * Click "Tabs on Top" to remove the check mark and place the Tab Bar at its original position just above the browser window.
    Firefox 4 uses a combined Stop/Reload/Go button that is positioned at the right end of the location bar.
    During the page load process it shows as a Stop button and after the loading has finished the button is changed to a Reload button.
    If you type in the location bar then that button becomes a Go button.
    You can middle-click that Reload button to duplicate the current tab to a new tab.
    In Firefox 4 you no longer have the Status bar that showed the padlock in previous Firefox versions.<br />
    The padlock only shows that there is a secure connection and doesn't guarantee that you are connected to the right server.<br />
    So you might still be connected to the wrong server if you make a typo in the URL and someone has claimed that mistyped URL.<br />
    The functionality of the padlock has been replaced by the [[Site Identity Button]] on the left end of the location bar.<br />
    See also:<br />
    * http://www.dria.org/wordpress/archives/2008/05/06/635/
    * http://www.mozilla.com/firefox/features.html

  • HT1418 I have iPod4 and cannot see day-to-day appointments, etc on PC Outlook calendar.  Only repeated items (birthdays, anniversaries, etc.) are visible.  Where is the rest of my data and how do I restore it to the only calendar I have in Outlook?

    I have iPod4 and cannot see day-to-day appointments, etc on PC Outlook calendar.  Only repeated items (birthdays, anniversaries, etc.) are visible.  Where is the rest of my data and how do I restore it to the only calendar I have in Outlook?
    Thanks

    Hello Schimi. The Time Capsule is a kind of product that offer you two possibility:
    - To use the TC as a router or as an external HD.
    The difference between WPA and WPA 2 are:
    - They are two kinds of internet connection.
    WPA uses dynamic key encryption , which means that the key is constantly changing and makes the invasion of a wireless network more difficult than WEP . WPA is considered one of the highest levels of wireless security for your network and is recommended if your devices support this kind of encryption . Newer routers offer WPA2 security . WPA2 is compatible with WPA , but offers higher security level . In fact, it meets the high standards of many government agencies . If the router and computer support WPA2 , this should be your choice.
    If you need any help or if you find some difficult setting up it you can contact Apple Support.
    I am sure that they can help you with that.
    I am sory for the delay. I holpe that you solve your issue.

  • HT204291 Using Azul media player app on my ipad  Apple tv will only display sound but not video from movies.  Any ideas on a fix.  I set mirroring to on but it still does not display video.  It will display photos and video recorded from my iphone.

    Using Azul media player app on my ipad  Apple tv will only display sound but not video from movies.  Any ideas on a fix.  I set mirroring to on but it still does not display video.  It will display photos and video recorded from my iphone.

    Here are the steps for AirPlay:
    Before starting Azul from your (running iOS 5.x/6.x) home screen where have have all your apps we need to turn on mirroring
    On your iPhone 4S/5 or iPad 2 or 3, double-click the Home  Button to view your recently-used apps.
    Swipe all the way to the right to until you see the  icon.
    Note: If the icon does not appear, go to the "If AirPlay Mirroring is not visible or available on your mobile iOS device" section.
    Tap the  icon to see the list of available AirPlay devices.
    Enable AirPlay Mirroring in this menu by tapping on an available Apple TV, then sliding the Mirroring slider to ON.
    Now you should be seeing your iPad/iPhone on your TV.
    Start up Azul now and using the settings icon on the top right corner go to the option that say "TV out" ON.
    When you do that you will see an Orange screen
    Now click "Done" and play the video you want to watch and it will AirPlay

Maybe you are looking for

  • Help with SERIAL FPGA

    I have a PWM project runing in FPGA target. And my execution file is working very well but just with Ethernet. I would like to do a project that a person who will execute this file can choose witch communication to use. Other words I just want to kno

  • Java Inner classes within the Threading paradigm

    Hi all. Im familiar with static nested classes, method local classes, inner classes and anonymous classes. But what I am a little perplexed by, is when exactly to use inner classes or static nested classes? (forgetting anonymous classes and method lo

  • I want to order an iMac 27" today, but...

    Does the version available today (and I'm looking to upgrade/customise) come with the retina display or ar Apple trying to get rid of old stock at the same price?    

  • ITunes won't connect to the internet

    I currently got Comcast working at my house, and when I went to restore my iPod shuffle, it said I couldn't connect. I ran the iTunes diagnostics and it alerted me that "Secure Link to iTunes Store failed". Microsoft Windows 7 x64 Ultimate Edition (B

  • E71 won't display text messages

    hello, i tried looking around for a solution for this but couldn't find one, i was wondering if anyone knows how to fix this problem, i cannot open my text messages in any way other than when it shows i have a new message in the homescreen and highli