Graphs, how to have a fixed background matrix

I am in the process of developing some code to remotely control some spectrum analyzers. Each system will consist of 4 spectrum analyzers. The customers wants the LabVIEW software to look and function just like the software that runs on their display and control unit. I am enclosing a picture of my X-Control that I created as part of the entire display. The spectrum analyzer indicates that the amplitude, Y-axis, range is 0 - 10,000 measurement units. The length, X-axis, has a range of 3-1024 positions units. The default is 800 position units. I plan on just using the default of 800. I have tried to set the property nodes from within the X-Control and either I am doing something wrong or the minimum, maximum, etc. values can not set within the X-Control.
What the customers wants to see on the background is a 10x10 matrix for the major lines. As you can see in the RFB graph, the lines are set for a 8 horizontal and 5 vertical matrix.
1. How would you advise that I get a 10x10 matrix for the background?
2. Would I need to do a custom control paste my own picture in it?
3. What is the best settings for the maximum, minimum, and sacling factors variables? or any other than you feel should be adjusted.
Thank you for your help.
Bill
Attachments:
graph.JPG ‏64 KB

Take alook at this thread (where Saverio dod all of the work I got all of the thatnks, go figure!). Slam your own image in and you may be good to go.
Ben
Ben Rayner
I am currently active on.. MainStream Preppers
Rayner's Ridge is under construction

Similar Messages

  • How to have a custom background at kernel boot?

    Hello everyone, I want to have a custom background at kernel boot since arch doesn't have a graphical loader (just like ubuntu,xp..).  It would be nice to see my favorite image during this boot process..:D
    Any tips?
    Thanks in advance...

    http://wiki.archlinux.org/index.php/Fbsplash
    http://wiki.archlinux.org/index.php/Gensplash
    Look at those links, might help you out

  • How to make a fixed background image in Dreamweaver CC

    I'm trying to make my background image fixed so when I scroll down in Dreamweaver CC it stays completely still, could someone please tell me how to do that?

    You've got a lot of code that you don't need.  And I'm very dubious about the file:/// path to your image.  Are you working in a Defined Local Site Folder?  The image path should be pointing to your site, not files:/// on your local hard drive.
    body {
    background:#000 url(concept_watch_dogs___wallpaper_1366x768_by_mackintosh141-d6led76.jpg) no-repeat center center fixed;
    Nancy O.

  • How to have a transparent background after saving as a jpeg?

    Hi guys!
    I designed this logo for a couple that are starting their own business. Problem is they never told me that they wanted to print the logo into T-shirt that are a Daisy yellow color. As of now we are trying to find the HTML code for the yellow in the shirts so I can match the background of the logo to the shirt because the problem they are having is that when they print the logo on the shirt it comes out squared and the logo in the middle. The logo its self its oval shaped. As an alternative and probably easier way to solve the problem I'm trying to send them just the logo shape but I've trimmed the excess background to a point where it cannot be trimmed anymore and there still is a white background to it, Probably my explanation its a bit confusing but ultimately I'm trying just to send them the logo with no white background at all. I need help with that. How to save the file and send it so they can open it still with no background color?
    Please help me ASAP!!!
    THANKS
    CAGE Graphics

    JPG files are not compatible with transparency.  You need to save as GIF or PNG, but make sure the unwanted area shows as the checkerboard in Photoshop before saving.
    It is always a good idea to ask the printer what works best for them.  I suspect there would be specific requirements for printing on material, but we don't know if this going to be screen print, or iron on or what. 

  • How to have a moving background on ipad 2 iOS

    I wanna have a moving wallpaper but I don't know how. Please help

    You don't, it's not supported.
    All it does is drain your battery for no useful purpose.

  • [iPhone] How to have a background showing under a transparent EAGLView?

    I'm trying to have a fix background that is blended with the OpenGL contents.
    I've tried to set an UIImageView at the back of a EAGLView but the image shows on top of the EAGLLayer. So I guess I am doing it wrong :]
    Is it possible? I also read that it will also imply a severe performance hit but I am still wondering how to do that.
    Any help will be greatly appreciated, and bonus points for sample code!

    Hi, that's easy too.
    [myView setBackgroundColor:[UIColor colorWithPatternImage:myImage]];

  • Fixed Background Help

    Guys,
    Im pretty new to Dreamweaver and am having some problems
    designing a website.
    I am wanting to have a fixed background and then a square box
    with my content in. I dont want the background to move when I
    scroll down the page, but I do want the box with my content to
    scroll.
    Any ideas how I can do this?
    Next question... how come when I design a page in
    Dreamweaver, when I view it in IE its positioned completely
    different? i.e. I centre a picture in Dreamweaver and when I view
    it in IE its in the top left hand corner etc its very random
    Thanks in advance

    > Out of curiosity, when making a web page... what
    size/dimensions do you
    > set
    > your page?
    To make your decision you need to have some ideas about the
    following
    issues -
    1. What is the primary target demographic for this site?
    2. What are the browsing habits of that demographic? Do they
    normally have
    their browser window maximized on the screen?
    3. If they usually have their browser maximized, what is the
    typical screen
    width?
    4. If they usually do NOT have their browser maximized, what
    is the MINIMUM
    screen width in that demographic.
    5. How do I want to build the page?
    a. Fixed width and left aligned?
    b. Fixed width and centering?
    c. Flexible to fill whatever width from left to right?
    d. Flexible (within limits) and left aligned?
    e. Flexible (within limits) and centering?
    As you can see, this decision is probably much more complex
    than you
    thought, and will require that you know quite a bit about
    your intended
    target visitor and their browsing habits.
    If you elect to go with 5a, or 5b, then your decision would
    be - 'what is
    the mimimum browser width I want to support without
    horizontal scrolling?'.
    Once you have determined that minimum supported width, all of
    your decisions
    are made. That's how wide you want your page to be.
    If you elect to go with 5c, then you just build your page
    within a flexible
    container (the simplest example - although an obsolet one -
    would be to use
    a 100% width table to hold the entire page). Be aware that
    pages with
    limited text content can look VERY sparse and empty on wide
    viewports when
    built in this way.
    If you elect to go with 5d, or 5e, then you would add this
    sophistication to
    your decision matrix -
    'what is the greatest width I want to allow the page and its
    contents to
    become?'
    In this case, you would use the CSS styles - 'min-width' and
    'max-width' on
    the primary page container. Just so you'll know, although
    these styles are
    well supported *now*, earlier versions of IE (and some other
    browsers) will
    not support them so reliably.
    So - which is it? 8)
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Martin.Maggiore" <[email protected]> wrote
    in message
    news:[email protected]...
    >I did think that was the case but I was having issues
    with the positioning
    >when
    > I did that.
    >
    > I think part of the problem is the design of the
    background.
    >
    > Out of curiosity, when making a web page... what
    size/dimensions do you
    > set
    > your page?
    >
    > I make my websites first in photoshop and then slice
    them into Dreamweaver
    >

  • Fixed Background/Scrolling text table

    I have a fixed background image (no repeat) I have a table
    inserted (760px) that contains my text. My pages are different
    lengths. How do I get the table to scroll over the background
    image? (www.soulseekers.org.uk) Thanks for your help....

    Just be aware that background-attachment:fixed doesn't work
    in IE6 and
    earlier on anything other than the body tag....
    I'm not sure about IE7, but I think it's OK there.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "FreakyJesus" <[email protected]> wrote in
    message
    news:fmi781$8el$[email protected]..
    >I think it looks great. If i had any quibble it would be
    it's too good an
    >mage
    > to waste mostly hidden.
    > But now I see, though, that you've made it more visible
    by removing the
    > black
    > bg in the table, and i think it's perfect as-is. If you
    do want the image
    > to
    > appear only behind the table (i think that's what you're
    describing) then
    > you
    > have to cheat a little. There are few methods but i
    think the easiest
    > might be
    > to create a DIV the same width as the table. Give it
    left and right
    > margins set
    > to auto (to centre it on the screen) and then make your
    image the
    > background to
    > this DIV and make it fixed like before.
    > Wrap this DIV around your table, and this will give you
    the effect. But
    > honestly, I think it's better as you have it now with
    the image taking up
    > the
    > wider area. I love it.
    >
    > Andy
    >

  • Generated  png24 assets have a white background, how can I fix this?

    I'm on version 14.1.2  and all my auto-generated png assets don't save with a transparent background.  I'm on win7 64bit.  what can possibly be wrong?

    nonetheless you were helpful...  by default all my psd's have a white background, once I changed that , the auto-asset generator now works with png's as intended 
    thank you!
    ps
    sorry for the late reply

  • How can I make the background of the Menu Bar white? I have Windows Vista

    After downloading the latest version of Firefox, the Menu Bar and the one underneath have a dark background that do not permit me to see the words or signs clearly. How can I fix this?

    You may have installed a persona that isn't working properly for you.<br />
    You can uninstall your current Persona and revert to the Default theme (Tools > Add-ons > Appearance/Themes).
    See:
    * https://support.mozilla.com/kb/Using+themes+with+Firefox
    * http://kb.mozillazine.org/Themes (Lightweight theme)

  • How to fix background wifi data usage in iphone6 iOS 8.1.1 when connecting to wifi?

    How to fix background wifi data usage in iphone6 iOS 8.1.1 when connecting to wifi?

    Hi
    I have Iphne 4s/5.0.1 and I'm also stuck with same problem from last 5 days. I have restored/backup/updated the phone as many times as possible. I have been with Vodafone Customer Care (India) and now everyone knows my problem there, but there is no solution.
    I have read and tried most of the solutions provided here. Please help me out.
    Problem -
    1. 3G / Edge working when restore as new phone
    2. 3G / Edge stops working as soon as backup is restored
    3. Copied and verified both of the files (8218978e4ab0a48035bb92653145a6be872ea858 (Restored new iphone & Restored backup iphone) have different settings. Replacing part of this file or even complete text of this file, changes the date/time stamp of file and on backup restoration it says "Corrupt backup" and phone restarts.
    4. I dont want to Jailbreak the phone
    5. Using any third party software to install new APN says "Only One APN can be installed"
    6. Profile doesnt show any other APN
    Is there any other way to delete this file (com.apple.managedCarrier.plist) or just change the section where in string value is "Portalnmms" to required value "iphone" along with key?
    Please help me out.
    thanks

  • I have downloaded the most recent version of Iphoto and it no longer works period. I lost all photos, and the app crashes every time I try to open it. How can this be fixed?

    I have downloaded the most recent version of Iphoto and it no longer works period. I lost all photos, and the app crashes every time I try to open it. How can this be fixed?

    Post the first 50 lines only of the crash report
    Regards
    TD 

  • How can I make the background one solid color?  It is too difficult and noticeable when I use the retouch button and try to erase all the creases in my backdrop.  So, how can I have just a solid white background?

    How can I make the background one solid color?  It is too difficult and noticeable when I use the retouch button and try to erase all the creases in my backdrop.  So, how can I have just a solid white background?

    When talking about a specific image posting the image may be useful.
    One can use a Layer Mask and add a white Layer underneath.

  • I have an iPhone 4 still running 6.1.3 software.  A few days ago it stopped working through my car's USB connection.  How can this be fixed?

    I have an iPhone 4 still running 6.1.3 software.  A few days ago it stopped working through my car's USB connection (I have a 2010 Honda Civic Hybrid).  I can no longer control my music through my car's stereo system.  I am unable to choose what song, album, playlist, etc. to be played and cannot skip songs.  When I try to skip, it reverts back to the first song.  When I choose what to be played directly on my phone, it can only be played for about 30 seconds through my car's stereo system before it stops and displays the message "Unsupported Version."  How can this be fixed?  (Also, I know it is my iPhone and not my car because someone I know has the same exact car as me from 2009 and it did the same thing on theirs.)
    Any help would be greatly appreciated.  This problem is extremely frustrating and the alternative of trying to change music directly on my phone while driving is a risk I am not willing to consider.  Thanks!

    Alright, sorry for not having browsed this page a bit more before stating my question. I have just found some other similar topics on this problem. Please don't reply this thread unless there actually is a solution to the problem, because at current time there is not.

  • My iphone 4s got water in the headphone port. I put my phone in rice for 24 hours and the LED light is on. It stays on even when the phone is off. How can I fix it with out spending 200 bucks at apple to have them fix it?

    My iphone 4s got water in the headphone poert. I put my phone in rice for 24 hours and the LED is on. It stays on even when the phone is off. How can i fix it without taking it to apple and spendding 200 dollars to have them fix it?

    Short answer is you probably cannot.  Once water gets inside the device and it is powered on, the damage likely is permanant. 

Maybe you are looking for

  • How to manage only 1 library in a network

    Hi, I'm using both a iMac and a MacBook. I want to manage only 1 iTunes Library. I have put my library into Timecapsule because I have lots of room. TC is also my wireless router. However, when I play music on my computer, I got music timeouts (sound

  • Samsung 51 inch

    I need your opinion could this all be a defect I only have had this tv for about two months and I have comcast cable the type where you can have a guide and see the listings of channels well, I notice the other day when I was watching tv and their wo

  • Smartforms: Window on Condition

    HI Experts,                 In my PO under smartforms, I have table in main and couple of windows below that. I want to show the below window on particular condition. If the rows in table greater that 9, below window will show on next page else on fi

  • [svn:fx-beta1] 7179: Improving the error message when Flex 4 primitives are added as children to Halo containers .

    Revision: 7179 Author:   [email protected] Date:     2009-05-21 08:54:48 -0700 (Thu, 21 May 2009) Log Message: Improving the error message when Flex 4 primitives are added as children to Halo containers. QE: Yes, please add test cases and update any

  • Transferrin Photo's from Mac to Mac

    Just bought brand new Macbook Pro. Currently have an Imac with a bunch of photo's on it in Iphoto. Also have a Network set-up in my house. Question is: What's the easiest way to transfer photo's from my Imac to my new Macbook Pro? Thx.