Setting the title font and axis labels in a graph created with the Report Generation Toolkit

I'm using the LabVIEW Report Generation Toolkit for Microsoft Office to generate Excel worksheets containing plots. Unfortunately, the default font size used in the plots is huge (see attached worksheet). I was able to use Excel Set Graph Font.vi to reduce the size of the axis labels, but there does not appear to be a function to do this to the title and legend. In addition, there does not appear to be a function to set the axis text labels. Before I write my own, has NI released additional functions to perform these tasks?
Thanks for your help,
Zach Lerner
Software Engineer
OnWafer Technologies, Inc.
Attachments:
Test1_-_embedded_graph's_title_and_legend_font_is_huge.xls ‏14 KB

Hello Zeidan
The graph title and legend font sizes can be changed by accessing a low level VI (Excel_Insert_Chart.vi) that is part of the excelsub.llb that is located at (C:\Program Files\National Instruments\LabVIEW 8.2\vi.lib\addons\_office). This VI is called dynamically from within the Excel Insert Graph.vi and it uses VI server technology to access the Excel exposed properties. Attached to this post is an image of the block diagram of this VI after I have modified it to set the font sizes of the title and legend to 15. The circles in the image represent what I had to add to accomplish this.
Best Regards,
Ayman Kabire
Attachments:
Excel_Insert_Chart.JPG ‏99 KB

Similar Messages

  • Can I align the orientatio​n of axis labels in a graph generated with the report generation toolkit (Word)?

    I was wondering how to align the axis labels, i.e. 90 degree or such when creating a graph with the report generation toolkit in word.
    I can do it after the document is created through Format axis title -> alignment but is there a way out of LabVIEW?
    I'd especially like to rotate the y-axis label by 90 degrees.
    Thanks a lot,
    Juergen

    I think he means he can modify it by hand after the report has been generated... But what I want to do is generate the word graph out of labview already with the rotated axis label...
    After I posted this I found out that we can do this with a macro and use it from labview, but unfortunately I don't know VB, or VBA...
    Like this:

  • Hi, After I installed Mac Lion, I have problem with the tamil font while typing in Neo Office. Especially with the letters "e-Ex: தெ" and "ai-Ex:தை". Please help me I know its not bug from Apple It shd be some problem in neo.

    Hi, After I installed Mac Lion, I have problem with the tamil font while typing in Neo Office. Especially with the letters "e-Ex: தெ" and "ai-Ex:தை". Please help me I know its not bug from Apple It shd be some problem in neo.

    Is your problem due to the keyboard or to NeoOffice Characters? You have to change probably the font. Not all fonts are supporting all Unicode sets. Which font you have in your NeoOffice set to write Tamil? Try with Arial Unicode MS for example.
    Are the letter e-Ex and ai-Ex right in your posting? If they are right, how you inserted these letters in your posting? By copy and paste or by typing? If by typing, your question is related to NeoOffice. Probably you should reinstall or update NeoOffice? Or switch to OpenOffice?
    marek

  • I just upgraded my iMac to Lion, and a few seconds ago, I upgraded the iWork package and now I'm having some problems with the new version of Pages (4.1) When I try to change something in a document, a message says "the program is not responding"

    I just upgraded my iMac to Lion, and a few seconds ago, I upgraded the iWork package and now I'm having some problems with the new version of Pages (4.1) When I try to change something in a document, a message says "the program is not responding", so I have to force it to close. By the way, the SAVE botton stays the same even I change erverything in my document. Please, a have a work to finish, **** me. What I can do abou it?

    I just upgraded my iMac to Lion, and a few seconds ago, I upgraded the iWork package and now I'm having some problems with the new version of Pages (4.1) When I try to change something in a document, a message says "the program is not responding", so I have to force it to close. By the way, the SAVE botton stays the same even I change erverything in my document. Please, a have a work to finish, **** me. What I can do abou it?

  • Hi um i have the ipod 5 and my computer seems to be fine with the wifi but when i pressed wifi and my wifi does not pop up it i put it on airplane mode reset the  networks erased my safari history . and it still has not read my wireless internet ?

    hi um i have the ipod 5 and my computer seems to be fine with the wifi but when i pressed wifi and my wifi does not pop up it i put it on airplane mode reset the  networks erased my safari history . and it still has not read my wireless internet ?

    If not:
    iOS: Wi-Fi or Bluetooth settings grayed out or dim
    One user reported that placing the iPod in the freezer fixed the problem. A trick that works frequently with iPhones:
    Settings > AirPlane Mode ON, Do Not Disturb ON
    Power down and wait 5-10 minutes
    Power up
    Settings > AirPlane Mode OFF, Do Not Disturb OFF
    If not successful, an appointment at the Genius Bar of an Apple store is usually in order.
    Apple Retail Store - Genius Bar
    Then:
    Try the following to rule out a software problem:                 
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on the router
    - Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - Wi-Fi: Unable to connect to an 802.11n Wi-Fi network
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    If still problem make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

  • Please help me on a form i push the submit button and all i get is a page with the following code wh

    <?php
    //--------------------------Set these paramaters--------------------------
    // Subject of email sent to you.
    $subject = 'Results from Contact form';
    // Your email address. This is where the form information will be sent.
    $emailadd = '[email protected]';
    // Where to redirect after form is processed.
    $url = 'http://www.karenwebster.info/confirmation.html';
    // Makes all fields required. If set to '1' no field can not be empty. If set to '0' any or all fields can be empty.
    $req = '1';
    // --------------------------Do not edit below this line--------------------------
    $text = "Results from form:\n\n";
    $space = ' ';
    $line = '
    foreach ($_POST as $key => $value)
    if ($req == '1')
    if ($value == '')
    {echo "$key is empty";die;}
    $j = strlen($key);
    if ($j >= 20)
    {echo "Name of form element $key cannot be longer than 20 characters";die;}
    $j = 20 - $j;
    for ($i = 1; $i <= $j; $i++)
    {$space .= ' ';}
    $value = str_replace('\n', "$line", $value);
    $conc = "{$key}:$space{$value}$line";
    $text .= $conc;
    $space = ' ';
    mail($emailadd, $subject, $text, 'From: '.$emailadd.'');
    echo '<META HTTP-EQUIV=Refresh CONTENT="0; URL='.$url.'">';
    ?>
    where do i put this and what am imissing

    I don't know why but after about an hour the tool bar you rferred to came on its self jsut as the support solution and you have advised and it is now working, but the toolbar just disappears and that is why I could not find the link or correct store link. Weird! But thanks, Gordon

  • I have pages for the iPad 3 and it does not seem to sync with the cloud

    I have the newest pages, an iCould account, an internet connection and every other possible thing.  I have been troubleshooting this problem and I cant seem to get it working.  Is anyone else having these issues with the iCloud syncing?

    Do you have:
    Settings > iCloud > Documents & Data > Documents & Data > On
    Is your network working for everything else? eg Mail & Safari?
    Peter

  • I have an HP TouchSmart laptop, which comes with a fingerprint reader that uses the DigitalPersona extension, and this extension is no longer compatible with the new Firefox. Is this going to be fixed?

    I have checked the Add-ons manager and the website for information about this problem, but there is no new information. It just says that this extension is not supported.

    Hello e6ssggladu,
    I'm sorry to hear that you are having issues with the sound, as well as the mute button on your computer. I would like to confirm the steps that you have taken for the refreshed your computer, rolled back, and rebooted. What steps did you take to perform these tasks?
    Also, so that I am able to provide specific steps for your computer. I would like to know, the full model number of your computer. I have included the following document, 'Guide to finding your model number'.
    Thank you.
    I worked on behalf of HP

  • How do i fix the sound on an iPhone 4S? When i play music the sound bar at the bottom disappeared and when i try to adjust sound with the buttons on the side, nothing happens. Also the sound in my apps is not working.

    The sound isn't working. And it also does not appear, when i try to adjuct it with the buttons the sound bar doesn't appear and when i try playing music at the bottom the sound bar disappeared. How do I fix this?

    Basic troubleshooting steps clearly outlined in the User Guide are restart, reset, restore from backup, restore as new device.  Have you gone through ALL of these troubleshooting steps?
    If you have gone through all the troubleshooting steps and you're still having problems, you'll need to bring your phone into Apple for evaluation.

  • I just now heard about the replacement program, and it won't let me finish with the request for replacement. what can I do?

    I have entered the product #, signed in, then checked my address info, after that, clicked continue. it said,
    we're sorry, the transaction cannot be completed at this time. Please try again later or contact us.
    contacting them seems to be even more difficult because it seems like its giving me the run around. my ipod was a gift. I have no idea when it was bought. i dont even remember if i registered it... what can I do. I am very frustrated with this because i have ran into this same window the last 3 days! do i just keep trying??

    I'm not exactly sure what the issue is.  Have you waited up to 24 hrs as suggested in the link I provided?
    If "Waiting for Activation" still appears after you perform these steps, turn FaceTime and iMessage off and on in Settings > Messages and Settings > FaceTime. You may need to wait up to 24 hours to complete activation. Most attempts will take less than an hour, but some attempts may take up to 24 hours. If your issue isn't resolved after 24 hours, please contact Apple for assistance. If you've recently performed a remote wipe on your iPhone, wait 24 hours from the time you performed the remote wipe, and then turn iMessage off then back on.
    iOS: Troubleshooting FaceTime and iMessage activation

  • When in mail, i would like to move emails to different folders other than the inbox, sent and trash can a folder be created?

    When in mail i would like to move my emails to a different folder on mail account other than the inbox, sent and trash options, can i  create a new folder?

    The suggestion above is for MailBoxes on the Mac in the mail app and have nothing at all to do with the iPad. I think that you are asking about the iPad mail app.
    You need to have an IMAP email account in order to create additional mailboxes on the iPad.
    If you go to your email account in the Mail app and look at the window where your inbox, trash folder and sent folder are - if there is an Edit button at the top of the window - tap that and then tap Add Mailbox at the bottom.
    If the Edit button is not there - you cannot create folders on the iPad. Your email account is not IMAP. Only IMAP email accounts can create folders on the iPad. Any folders that you would already have in an IMAP account would sync to the device as well.

  • I have everything set for Arabic fonts and the keyboard as well. When I type in WORD or EXCEL I just get individual Arabic letters, but they never connect, they should be for example like this   الس    but they always appear like that ا ل س

    I have everything set for Arabic fonts and the keyboard as well. When I type in WORD or EXCEL I just get individual Arabic letters, but they never connect, they should be for example like this   الس    but they always appear like that ا ل س

    MS Word for Mac has never supported Arabic.  You have to use other apps.  Mellel is best, but Pages 5, TextEdit, Nisus Writer, or Open/LibreOffice should work OK.
    Sometimes you can make Word for Mac do connected Arabic if you are editing a document created with Windows Word.

  • Product page title font and a suggestion

    Is it possible to change the title font used on product pages? There doesn't seem to be any customisation option as there is on the 'spotlight' page.
    I'm not sure whether I've set this somewhere but it's the same for all three books I've published on lulu.com.
    I've just checked and it's obviously set according to the category in which the book appears - I'm leaving this post here in case anyone else has the same question as I couldn't find an answer anywhere.
    Suggestion: Change the title font for books in the history section - it doesn't match any other fonts on the page and being such a strong art deco (or art nouveau?) style, it's inappropriate for books that don't sit in that narrow time-frame.
     

    picnic wrote:
    Is it possible to change the title font used on product pages? There doesn't seem to be any customisation option as there is on the 'spotlight' page.
    I'm not sure whether I've set this somewhere but it's the same for all three books I've published on lulu.com.
    I've just checked and it's obviously set according to the category in which the book appears -
    No it's not. There's no reason it should be, and the Wizard has no idea what category you place the book in until past the Cover Wizard.
    I'm leaving this post here in case anyone else has the same question as I couldn't find an answer anywhere.
    Suggestion: Change the title font for books in the history section - it doesn't match any other fonts on the page and being such a strong art deco (or art nouveau?) style, it's inappropriate for books that don't sit in that narrow time-frame.
    It's nothing at all to do with the book type. Take a look at the Cover Wizard and click all the tabs and options in it.
    https://www.youtube.com/watch?v=xoMxTo9ssJ8
    if you want all of the text to match then create a full cover image on your PC and delete the text in the Cover Wizard.

  • How to replace the icon in the title bar and minimized window

    I am not sure if this is a Swing question. But since nobody answered it in the Java Programming forum, let me place it here:
    I would like to set my own icon in the title bar and in the minimized window of my java application, replacing the java coffee cup icon.
    I am using:
    frame.setIconImage(new ImageIcon("image.gif").getImage())
    as was suggested previously in the Java Programming forum at:
    http://forum.java.sun.com/thread.jspa?forumID=31&threadID=5212059
    This does create the icon in both places. However, it only works when I run the program from JBuilder 2006. It doesn't work if I run the program from the .jar or the .exe file.
    How can I make it work for my .jar and .exe file?
    Please help! Thanks!

    It doesn't work if I run the program from the .jar...working example for a .jar
    import javax.swing.*;
    import java.awt.*;
    class Testing
      public void buildGUI()
        JFrame f = new JFrame();
        Image img;
        try
          java.net.URL url = new java.net.URL(getClass().getResource("Save.gif"), "Save.gif");//correct capitalization required
          if (url != null)
            img = javax.imageio.ImageIO.read(url);
            f.setIconImage(img);
        catch(Exception e){}//do nothing - default will display
        f.setSize(200,200);
        f.setLocationRelativeTo(null);
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.setVisible(true);
      public static void main(String[] args)
        SwingUtilities.invokeLater(new Runnable(){
          public void run(){
            new Testing().buildGUI();
    }

  • Can anyone edit title fonts and sizes in iMovie 10?

    Trying to edit title fonts and sizes in iMovie 10 but font drop down does not respond.  Tried a couple of different style titles with same results.  Anyone else have this problem? 

    Another bug from apple. I can't even understund how do they test these products if most of the inspector options are not working. Same on Transition speed.

Maybe you are looking for