How can you rotate the labels on the category axis of a graph in Illustrator and have it stay the same when updating the graph data?

I am needing to create a line graph with dates consisting of MM/DD/YY along the category axis. I would like to rotate the labels 45 degrees and have them stay when I update the graph. I have read about manually doing it, I even made an action to make it faster, but it still seems inefficient. Is there a setting that I could use to automatically create my labels as rotated? Thanks.

Hi Gravy Train,
I'm curious about why you are using 2 loops.   You mentioned one is for monitoring and one is for DAQ....what do you mean by that?   What is the overall goal of this piece of code.   Also, I noticed that you are not closing the task.   Since this is just a subset, I realize you could be closing it in your actual code, but just in case you're not.....it is very important that you close all tasks when you are down acquiring data.
Best Regards,
Starla T  

Similar Messages

  • How can i start to use i chat if it said my password is incorrect and i change it, but still appears that the password is wrong :(

    how can i start to use i chat if it said my password is incorrect and i change it, but still appears that the password is wrong

    Hi,
    AIM
    If this is a Name valid with the AIM servers the password has to be 16 characters or Less.
    The Apple IDs from MobileMe and @Mac.com allow you to create (And prompt your for ) Longer passwords.
    These Names are Valid with the AIM servers but they cannot process the password.
    Use iforgot to Change the password to something shorter.
    Googletalk
    If you are using a Google ID then you have to enter your Google ID as it appears when you log in to the Google Web Mail Page.
    The Mail App seems to allow the Endings (@gmail.com and @googlemail.com) to be used almost interchangeably where as the Jabber Server Google run for Google Talk is stricter (so iChat needs to be precise).
    Also the chat option needs to appear in the Web Mail page.
    If it does not it needs Enabling on you Google Account settings page.
    8:10 PM      Tuesday; July 5, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.7),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • How can you change your security questions!! i got a new iphone 5 and i forgot them!!

    How can you change your security questions?! I got the iphone 5 and i forgot them and it wont let me buy songs!!!!

    Click here and request assistance.
    (72909)

  • HT5163 my original Apple Id Email was hacked.  How can i change my Iphone apple Id ?  ive changed it on my pc and my ipad but cannot do it on the phone (iphone 4)

    My original apple id email was hacked.  how can i change my apple id for my iphone 4. im able to change it for the pc and my ipad but cannot chonge it for the phone

    I had the same problem last month.
    The only fix was to call Apple Support. Basically, the history of the account could be followed and the hacker had changed the email address and no doubt the password of my apple id. The account also showed purchases in £ so I suspect the associated country been changed as well?  Apple support blocked his associated credit card, restored the account back to a date where I had last used it and we then changed the Apple ID to a new email address. I could have used the old Apple ID, effectively regaining control of it, but I wasn't attached to it and it enhanced security by changing it.
    Scared myself last night as my daughetrs iphone had been associated with the old ID and she couldn't access the icloud acocunt. I'd manged to restore her iphone, although it was asking for the passowrd of the hacked Apple ID, I used the password for the 'new' ID (just the old one with a changed email) and it worked. Even after restoring the iphone, I still had to change my 'new' apple id back to the 'old' email so she could sign out of the 'old' icloud account on her phone after the restore and disable 'find my iphone'. Only then could she add her own personal icloud account and I changed my apple id back to the new email. Confused?
    Point is, you will need apple support to regain control of your apple id. If you're not attched to it and want a new or modified apple id, make sure you sign out of all assoicted devices first!  

  • How can I promote a field in my form to a SharePoint 2010 list column and have it populated?

    Hello,
       I have created a form using some jquery, html and <td> tags. I would like to promote the fields that I am having users fill out in the form so that they appear in the list that the submitted form is writing to. Below is the code that I
    have written, with some help of a great tool (Forms 7), is there another tag or class that I can input in order for the field names to appear in the list? I'm trying to also create a workflow and without these fields being columns I'm at a loss. Please help
    <link  type="text/css" rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/themes/start/jquery-ui.css" /> 
    <!-- Reference jQuery on the Google CDN --> 
    <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> 
    <!-- Reference jQueryUI on the Google CDN --> 
    <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/jquery-ui.min.js"></script> 
    <!-- Reference SPServices on cdnjs (Cloudflare) --> 
    <script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery.SPServices/0.7.2/jquery.SPServices-0.7.2.min.js"></script> 
    <script type="text/javascript" src="http://www.sharepointhillbilly.com/demos/SiteAssets/jquery.Forms7-0.0.03.js"></script>
    <style type="text/css">
    .error
    {font-family:'Tahoma',sans-serif;font-size:10px;text-align:left;color:red;}
    </style>
    <script type="text/javascript">
    $(document).ready(function() {
        //Initialization function. Tells Forms7 which Query String Variable
        //has the ID of the form, and the name of the list to read data from
        $("#sampleForm").Forms7Initialize({
    queryStringVar: "formID",
    listName: "Contacts"
    //helper function to load a drop downlist
    //assumes there is a list called "States"
        $("#PassSelect").Forms7LoadDDL ({
    listName: "Passengers",
    firstOptionText: "Select",
    fieldName: "Title"
       //apply the jQueryUI calendar to the DepartDate field
    $( "#DepartDate" ).datepicker({
               changeMonth: true,
               changeYear: true,
            //apply the jQueryUI calendar to the ReturnDate field
    $( "#ReturnDate" ).datepicker({
               changeMonth: true,
               changeYear: true
    //function to load the city drop down list to only show cities for the selected state
    function LoadCities(stateID)
    //helper function to load a cascading dropdown list
    //in this example it would load Cities from a list called "Cities"
    //where that list had a lookup field called "State" and it would
    //use the ID of the selected State
    //    $("#CitySelect").Forms7LoadChildDDL({
    // parentID: stateID,
    // parentField: "State",
    // listName: "Cities",
    // firstOptionText: "Select City",
    // fieldName: "Title"
    function SubmitForm()
    //When the form is submitted store it to the specified list
    //also pasas in the x and y offset of error messages for elements
    //this allows you to change their location in reference to the form field
    $("#minimalForm").Forms7Submit({
    listName: "Reservations",
    errorOffset"Apple-tab-span" style="white-space:pre;">    
    errorOffsetnbsp;           completefunc: function(id) { 
    alert("Save was successful. ID = " + id);
    window.location = window.location.pathname + "?formID=" + id; 
    </script>
    <div id="minimalForm" >
    <table width="100%" cellpadding="10" cellspacing="0" >
    <tr bgcolor="white">
    <div id="minimalForm" >
    <br><img src="http://BannerImage.jpg"  width="400" height="160" alt="AltImageName" align="middle">
    <font size="6">Vehicle Request Form</font>
    <font size="1">Last Modified: 03/21/2014</font></br>
    <hr><b></hr></b>
    <p>
    </p>
    <hr>
    <br><font size="3"><b>Forms on File</b></u></font></br>
    <hr>
    <font size="2"><b>NOTE:</font></b> <font size="1">The following forms must be on file with Human Resources before you can use a vehicle. Only fill out the third form if you need to notify HR about any activities
    that may affect your eligibility to operate a motor vehicle
    </font>
    <br><a href="url"><font size="3">1) Driver's History Consent Form </a>
    <br><a href="url"><font size="3">2) Driver Qualification Procedure Acknowledgement Form</a>
    <br><a href="url"><font size="3">3) Driver Qualification Procedure Notification</a>
    <br>
    <br><font size="1"><b>These forms must be signed and submitted to Human Resources every 6 months.</font></b>
    <br><font size="1">Do you currently have these forms on file with Human Resources?</font> 
    </font>
    <hr>
    <table>
    <td><font size="3"><b><u>Driver Information</b></u></font></td>
    </table>
    <table>
    <tr bgcolor="white">
    <br>
    <td class='formLabel'>First Name:</td>
    <td class='formLabel'><input title="First Name" id='FirstName' data-displayname="DriverFirstName"class='required formInput' maxlength="40"></td>
    <td class='formLabel'>Middle Name:</td>
    <td class='formLabel'><input title="Middle Name" id='MiddleName' class='formInput' maxlength="1"></td>
    <td class='formLabel'>Last Name:</td>
    <td class='formLabel'><input title="Last Name" id='LastName' class='required formInput'maxlength="40"></td>
    </tr>
    <tr bgcolor="white">
    <td class='formLabel'>Email:</td>
    <td class='formLabel'><input title="Email" id='Email' class='required formInput' maxlength="40"></td>
    </tr>
    <tr bgcolor="white">
    <td class='formLabel'>Supervisor Name:</td>
    <td class='formLabel'><input title="SupervisorName" id='SupervisorName' class='required formInput' maxlength="40"></td>
    </tr>
    </table>
    <hr>
    <table>
    <td><font size="3"><b><u>Passenger Information</b></u></font></td>
    </table>
    <table>
    <tr bgcolor="white">
    <br>
    <td class='formLabel'>Passenger Name:</td>
    <td class='formLabel'><input title="First Name" id='PFName' class='required formInput' maxlength="40"></td>
    <td class='formLabel'>Middle Initial:</td>
    <td class='formLabel'><input title="Middle Name" id='PFName' class='formInput' maxlength="1"></td>
    <td class='formLabel'>Last Name:</td>
    <td class='formLabel'><input title="Last Name" id='PLName' class='required formInput'maxlength="40"></td>
    </tr>
    <tr bgcolor="white">
    <td class='formLabel'>Email:</td>
    <td class='formLabel'><input title="Email" id='PEmail' class='required formInput' maxlength="40"></td>
    </tr>
    <tr bgcolor="white">
    <td class='formLabel'>Passenger Supervisor Name:</td>
    <td class='formLabel'><input title="SupervisorName" id='PSuperVisorName' class='required formInput' maxlength="40"></td>
    </tr>
    <tr bgcolor="white">
    <td class='formLabel'>Number of Additional Passengers:</td>
    <td class='formLabel'><select title="Pass#" id='PassSelect' class='formInput' onchange="LoadPassengers(this.value);"></select></td>
    </tr>
    </table>
    <hr>
    <table>
    <td><font size="3"><b><u>Reservation Duration</b></u></font></td>
    </table>
    <table>
    <tr bgcolor="white">
    <br>
    <td class='formLabel'>Depart Date:</td>
    <td class='formLabel'><input title="Depart Date" id='DepartDate' class='required formInput' isDate="yes" validate="validDate" onchange="validDate(this.value,this);"></td>
    <td class='formLabel'>Return Date:</td>
    <td class='formLabel'><input title="Return Date" id='ReturnDate' class='required formInput' isDate="yes" validate="validDate" onchange="validDate(this.value,this);"></td>
    </tr>
    </table>
    <hr>
    <table>
    <td><font size="3"><b><u>Travel Information</b></u></font></td>
    <tr bgcolor="white">
    <td class='formLabel'>Please describe reason for request:</td>
    <td class='textbox' height='20' width='30'><input title="DestInfo" id='DestInfo' class='required formInput' maxlength="500"></td>
    </tr>
    </table>
    </hr>
    <p></p>
    </br>
    <input type="button" value="Submit/Update Request Form" onclick="SubmitForm();">

    Hi,
    If you want to add fields to a list, as you have written your form in JavaScript, you can take consideration of using JavaScript Client Object Model to add/delete fields dynamically.
    How to: Create, Update, and Delete Lists Using JavaScript
    http://msdn.microsoft.com/en-us/library/office/hh185005(v=office.14).aspx
    If you want to achieve it with Form7, it is recommended to post the question to its forum to get quick and confirmed answer.
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Patrick Liang
    TechNet Community Support

  • How can I operate  multi displays on my Imac 21.5 quad core 2.5 and have each display function independently?

    how can I operate  multi displays on my Imac 21.5 quad core 2.5 using Lion and have each display function independently?

    Below are some converters/adapters to look at.  If these look like they may work:
    USB 2.0 to HDMI Audio Video 1080P Adapter for Windows and Macbook
    Matrox DualHead2Go D2G-A2D-IF (or look here)
    These should allow you to run multiple displays in extended display mode.  Note that these use HDMI as an output so you would need some additional adapter to conver HDMI to whatever your displays require.  Of course these suggestions are all academic if such an adapter doesn't exist.
    Update:
    I just reread your last post and I am confused.  Is it only your TV that you are trying to run in extended display mode?  I thought you wanted more than two displays.  If only  the TV it should just work if you are not using mirrored displays.  Your Displays Arrangement tab should show both your main screen (one with the little whith menu bar) and the TV.  Set the proper resolution and refresh rate for the TV using it's Displays preference window.  That is all you need to basically do (ignoring overscan/underscan problems).
    Note, if you are using Lion then I have heard that when using full screen mode in Lion additional screens show nothing.

  • How do I get my legitimate songs from iPod to iTunes? Old computer died and have new iMac but same apple id?!!

    HELP ME!    
    I won't lie, iTunes confuses the **** out of me. I thought I had it sussed though, clearly I was wrong...
    Okay, got a new iMac when my last pc finally died. Synced my ipod to it no worries at all, never lost a song. I assumed it was because I had home sharing or because I'd authorised my new computer using my old apple id?
    Now I have a problem though. This is the first time I've actually had a good look at what happens when I connect the ipod to itunes. It will let me add new music that I've burned from my cds. However, it won't let me save any of the previously burned music on this ipod to the itunes library, even though I used itunes and the same apple id to do it originally on my old pc. I want to do this so I can transfer some of the music to my iphone which has less memory (we have an ipod playlist and iphone playlist because of the memory available).
    Is there a setting I've got wrong or is this because itunes legitimately believes I'm trying to infringe a copyright? I thought my apple id would mean they knew everything I'd done under that id before? Do I have to burn the cds all over again?
    Pls ask me to clarify anything if I've not provided the right info.
    Thanks

    A lot of content is available to down load from the purchased are of Itunes Store on all devices and computers.
    If you do not use iTunes Match, I don't then the computer is your source of your own non purcased content. This you can share with 5 Computers and 5 Devices.
    That is why it is important to keep a backup of this data so it can be restored to that computer or mover to a new one and you can resync it to your devices

  • How can you rotate the screen on a 7th generation Ipod nano?

    I have just bought a 7th generation Ipod Nano (The newest nano) and I was wondering if it is possible to rotate the screen when playing music?

    Your welcome.
    B-rock

  • How can you sort albums in coverflow by category??

    My cover flow shows over 200 albums alphabetized by artists.
    Is there any way to have coverflow sorted to display the albums sorted by
    categories and within categories by artists?
    Example-I have three categories of albums
    classical
    jazz
    rock
    I'd like to have coverflow display all the classical albums first
    then followed by jazz category, and by rock category
    Thanks for your help!

    I would also be interested in sorting options, and also displaying different fields under the coverflow picture.
    Standards seems to be
    - Album
    - Album Artist
    Can his b changed to different options?
    Thanks

  • My applications will not open, how can I fix this. I recently bought a new lap top download iTunes and have been using it now, any suggestions?

    My iPhone 4 will not open my purchased apps, anyone know what is going on? I just recently bought a new laptop and downloaded iTunes onto and synced my phone. I was also talking on my phone and it died, then I charged it and that is when the apps would no longer open. My mail, and iPod and safari work just not the purchased apps, if anyone know please write back!:)

    Try downloading any free app to resync your iTunes account.

  • HT1789 How can you rename your iPod in iTunes 11?

    How can you rename your iPod in iTunes 11?
    I am using a Mac and an iPod Nano (the old longer one)

    Double-click the name in the device summary screen to get a cursor, and edit the name. In previous versions of iTunes, you could change the name by clicking it once.

  • How can you add an image in Mail without being an attachment?

    How can you add an image in Mail without being an attachment?
    In otherwords I'd like to put my logo in the email not as an attachment but as an image.
    Is there a simpel solution to this problem?

    PBN1 wrote:
    How can you add an image in Mail without being an attachment?
    You don't.
    It's not possible. The e-mail protocol is designed for text; anything else has to go as an attachment.
    Different mail clients (such as Mail.app, the mail client bundled with Mac OS X) may have different ways of handling such attachments, but they are still attachments. Each mail client has its own rules and methods, so one may display a picture as if it were in the body of the message, but another client may do something completely different.
    A way of faking it is to format your message in HTML (which is a kind of text). The image is hosted on a remote server, not added to the message; instead, you include a link to it in the body of the message, as you would when building a web page. (This is also what the two tips helpfully provided by X423424X do, except that the link to the image is added in the signature, rather than the body of the message.) What exactly happens to it is, again, at the discretion of the mail client. In my case, for instance, displaying images in HTML messages is turned off, and will stay resolutely off.

  • How can you upgrade from OS 10.4

    How can you upgrade from MAC 10.4.4

    Backup your computer.
    Buy Snow Leopard.
    Boot from Snow Leopard DVD.
    Erase the hard drive.
    Install Snow Leopard.
    To get Snow Leopard:
    Upgrading to Snow Leopard
    You can purchase Snow Leopard through the Apple Store: Mac OS X 10.6 Snow Leopard - Apple Store (U.S.). The price is $19.99 plus tax. You will be sent physical media by mail after placing your order.
    After you install Snow Leopard you will have to download and install the Mac OS X 10.6.8 Update Combo v1.1 to update Snow Leopard to 10.6.8 and give you access to the App Store. Access to the App Store enables you to download Mountain Lion if your computer meets the requirements.
         Snow Leopard General Requirements
           1. Mac computer with an Intel processor
           2. 1GB of memory
           3. 5GB of available disk space
           4. DVD drive for installation
           5. Some features require a compatible Internet service provider;
               fees may apply.
           6. Some features require Apple’s iCloud services; fees and
               terms apply.
    To upgrade further see:
    Upgrading from Snow Leopard to Lion or Mountain Lion to Mavericks
    To upgrade to Mavericks you must have Snow Leopard 10.6.8, Lion, or Mountain Lion installed. Purchase and download Mavericks (Free) from the App Store. Sign in using your Apple ID. The file is quite large, over 5 GBs, so allow some time to download. It would be preferable to use Ethernet because it is nearly four times faster than wireless.
         OS X Mavericks- System Requirements
           Macs that can be upgraded to OS X Mavericks
             1. iMac (Mid 2007 or newer) — Model Identifier 7,1 or later
             2. MacBook (Late 2008 Aluminum, or Early 2009 or newer) —
                 Model Identifier 5,1 or later
             3. MacBook Pro (Mid/Late 2007 or newer) — Model Identifier 3,1 or later
             4. MacBook Air (Late 2008 or newer) — Model Identifier 2,1 or later
             5. Mac mini (Early 2009 or newer) — Model Identifier 3,1 or later
             6. Mac Pro (Early 2008 or newer) — Model Identifier 3,1 or later
             7. Xserve (Early 2009) — Model Identifier 3,1 or later
    To find the model identifier open System Profiler in the Utilities folder. It's displayed in the panel on the right.
    Are my applications compatible?
             See App Compatibility Table — RoaringApps.
    Upgrading to Lion
    If your computer does not meet the requirements to install Mavericks, it may still meet the requirements to install Lion.
    You can purchase Lion by contacting Customer Service: Contacting Apple for support and service - this includes international calling numbers. The cost is $19.99 (as it was before) plus tax.  It's a download. You will get an email containing a redemption code that you then use at the Mac App Store to download Lion. Save a copy of that installer to your Downloads folder because the installer deletes itself at the end of the installation.
         Lion System Requirements
           1. Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7,
               or Xeon processor
           2. 2GB of memory
           3. OS X v10.6.6 or later (v10.6.8 recommended)
           4. 7GB of available space
           5. Some features require an Apple ID; terms apply.

  • MacBook Pro2012 : How can you get hard drive upgraded in Netherlands without losing warranty?

    My MacBook Pro (2012) hard drive is almost full, Apple refuses to provide hard drive upgrade service, how can you get hard drive upgraded in Netherlands without losing warranty?

    Dear Ralph, and All
    My MBP is indeed non-retina.
    I also have Apple care support for 3 years
    I was in touch with Apple suport since last week. Response I got on Phone was pretty astounding (waiting email confirmation). They say following
    - Apple support does not provide such service of upgrading hard drive
    - Doing it yourself means you will lose warranty (due to nature of operation one would need to perform on the computer)
    - None of authorised delars will provide such a service
    So as such there apparantly is no way to get your hard drive upgraded without losing warranty.
    Leaves me a bit perplexed
    I do understand MBP retina (or iPAD / iPhones) are manufactured in way that makes it technically impossible to upgrade certain parts. But why non-retina MBP?
    What do you all think? is this reasonable? is this what a MBP customer would expect?
    Really appreaciate the quick responses i have recieved from you and others on this forum.
    Many thanks
    Tirath Shah

  • How can you link up online files to a offline file

    I have asked this question before, but did not get the answer I needed. So I though for a bit and came up with a more understand able question and how to explain it and here it is:
    What I want to know, is how can you link an online html link to an offline swf file? Now this is needed because people need to download the swf file in order to use it, I have tried this:     file://swf/Lr1.swf (link), but it doesn't work it comes up with not found. So can any one help?

    drunkmafia wrote:
    I have asked this question before, but did not get the answer I needed. So I though for a bit and came up with a more understand able question and how to explain it and here it is:
    What I want to know, is how can you link an online html link to an offline swf file? Now this is needed because people need to download the swf file in order to use it, I have tried this:     file://swf/Lr1.swf (link), but it doesn't work it comes up with not found. So can any one help?
    Personally I think you are going about this all wrong.  I believe someone recommended to you in a previous post to look into the HTML5  ( http://forums.adobe.com/thread/874917 ) you need to end up creating the site with Adobe AIR as opposed to the way you are going about doing it.  That would be creating an application like Tweetdeck that connects to the internet and uses interactive elements.  http://www.adobe.com/devnet/air.html
    If you want to link a file within a Flash document you would receive a quicker and more in depth answer in the Flash forum as it will require ActionScript.
    http://forums.adobe.com/community/flash
    It sounds like you have a ton of ideas, but your lack of information suggests that 1. you don't have all the knowledge necessary to get the project off the ground and 2. your reluctance to share it suggests that you have an idea that you feel the program is proprietary.  Given that this is the case you might be best served looking for an experienced Flash or AIR developer to help get your ideas going in motion. There is nothing wrong with trying to learn but the information you are giving up to go on is very broad and unfortunately it does not appear that you are getting the answers you are looking for.

Maybe you are looking for

  • Hi, I having trouble trying to connect to the wifi, I know the passwords and checked with others divises but with the mac os x 10.7.5  mac os x lino

    Hi, I having trouble trying to connect to the wifi, I know the passwords and checked with others divises but with the mac os x 10.7.5  mac os x lion is not working One of the wifi connections said "time out" or did not recongnise the password

  • Structure of CSB34 Spanish file

    Gurus, Please provide me a documentation wich declares the format and structure of a CSB34 file. I'd need to know what do all the format codes mean (e.g.: 044  Beneficiary's Swift  ,  045  vendor name ) Thank you in advance! Regards, Endre

  • Windows will not open an indesign or pdf on my computer

    Something has corrupted every single pdf and indd file on my computer. I am the lead designer for a company. I need access to these files. I have sent files to other computer and they cannot be opened. I have received new pdfs and they will open. Som

  • Re: SAP FX translation

    While trying to run the new GL FX translation program FAGL_FC_TRANS, it keeps giving error message FR 588 (No financial statement version assigned to valuation area RI). Not sure why it shows this error , as we have already assigned a Financial state

  • WAP321 MAC Filtering Not Working

    Hello, We have 6 x WAP321's setup via "Single Point Setup". We have enabled MAC Filtering and set to "Block all stations in list". We have added one device into this list and confirmed this replicates around all the APs. However, it doesn't prevent t