Excel chart width

does anyone know how to change the width of the graph?
i want to make the lines smaller or bigger.
Solved!
Go to Solution.
Attachments:
excelchart_plot._ablation.vi ‏48 KB

I am not able to open the code as I have only LabVIEW 2012. Which line do you mean. Regarding the Excel chart you have all the properties accessable through ActiveX, did you try that? Also you have some of the properties available in RG toolkit as well.
The best solution is the one you find it by yourself

Similar Messages

  • Excel colomn width

    I am using this FM to send an excel attachment SO_DOCUMENT_SEND_API1
    Problem: excel column width is not adjusting as per field length,
    Regards
    Raj.
    Points are awarded for use ful answers.

    I am not able to open the code as I have only LabVIEW 2012. Which line do you mean. Regarding the Excel chart you have all the properties accessable through ActiveX, did you try that? Also you have some of the properties available in RG toolkit as well.
    The best solution is the one you find it by yourself

  • How to link Excel Chart with multiple columns dynamically?

    Hi all,
    I have one problem. I have an excel chart which has to read data from multiple columns for it's X-axis values (time stamps) and the same number of values for it's Y-axis from multiple columns. See figure attached.
    Now, you can do this by manually assigning values by holding control key to tell the chart that data from many columns is continued from the first column. i.e, a long data is distributed along may columns. This is done very easily manually.
    Now, how to do it at runtime through LabVIEW 8.0?
    Although, I have done it through labview when there where only two columns, A and B streching up to any length. But, now to save space we are dumping into many columns in the same page and want the chart plot that data as we dump it. 
    It is tough since I don't know how to assign SourceData of the chart through labview.
    I have attached chart's SourceData picture.
    Hope you all can solve my problem.
    The Y-axis values are: =(good!$B$30:$B$70,good!$D$30:$D$70,good!$F$30:$F$70,good!$H$30:$H$70,good!$B$71:$B$140,good!$D$71:$D$140,good!$F$71:$F$140,good!$H$71:$H$140,good!$B$141:$B$189)
    good is the name of the file.
    The X- axis values are: =(good!$A$30:$A$70,good!$C$30:$C$70,good!$E$30:$E$70,good!$G$30:$G$70,good!$A$71:$A$140,good!$C$71:$C$140,good!$E$71:$E$140,good!$G$71:$G$140,good!$A$141:$A$189)
    See the columns vary from A to F.
    I have still not got what I love.....
    Attachments:
    ExcelChart.JPG ‏113 KB
    SourceData.JPG ‏34 KB
    XY values.JPG ‏36 KB

    Ok i solved the excel chart problem. Here is the figure showing my victory! But offcourse with NI forum help.
    Message Edited by Halemani on 09-19-2008 06:33 AM
    I have still not got what I love.....
    Attachments:
    Chart_XValues_Values.JPG ‏36 KB

  • How to put header and footer information in excel chart

    I modified the create chart.vi, I got from this site and able to create a chart from *.xls file. Now I want to print the filename as header and date and time the chart created as footer in the excel chart. Any idea is appreciated.
    Thank you
    MM
    Attachments:
    Create_Rundown_Chart.vi ‏246 KB
    SN20755-Horiz_1-031027-160128-rundowndata.xls ‏15 KB

    Under the property node _Chart where you have the ChartTitle, add the property PageSetup. Cascade that into another property node and choose CenterHeader and CenterFooter. You can write the strings directly into these properties. Use the following codes:
    Filename = &F, Date = &D, Time = &T
    Be sure to close all references that do not leave the page (ie. Chart, Legend, ChartArea, etc.). Otherwise Excel will hang later on.
    Michael Munroe
    www.abcdefirm.com
    Michael Munroe, ABCDEF
    Certified LabVIEW Developer, MCP
    Find and fix bad VI Properties with Property Inspector

  • Low Memory when Printing Excel chart on LaserJet 3015 ll-in-one

    Low Memory when Printing Excel chart on LaserJet 3015 ll-in-one
    When I try to print a chart from Excel 2007 I get a low memory error. All other printing seems to work just fine. I thought it might be because of a color fill in the chart area so I removed the fill but I'm still getting the error.
    I've also cleared the fax memory and run through the steps in http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?lang=en&cc=us&objectID=c00378226&prodT...
    Running: Windows WP pro (SP3)
    Printer: LaserJet 3015 all in one
    Current driver: HP Lasetjet 3015 PCL 6
    Running as a network printer using a D-Link DP301P

    When an application is installed to the expansion card, that's the only place where you will see it in the app launcher screen, i.e. by selecting the card.  It will not appear in the All category because that only shows apps which are installed to internal memory.
    As for the Files application, yes, it only lets you browse contents of the card.  For a more robust file management utility which will let you browse your entire phone, you might want to look into a freeware application called FileZ, which I believe is available at www.palmgear.com and other places.
    I've never run Documents To Go from a card, but when you open Docs to Go and open the Menu > Options > Manage Applications, there is an option there to move applications to the Card.  Never having done that, I'm not sure whether it moves the whole DTG app to a card but, give it a try.
    I have oodles of applications and documents stored on my Centro's internal memory, and never have run up against a memory problem.  At any time, you can check available memory by going to the application launcher (home) screen, opening the menu, and selecting Info.
    smkranz
    I am a volunteer, and not an HP employee.
    Palm OS ∙ webOS ∙ Android

  • In download to excel from bsp hw to increase excel column width to wrap txt

    in download to excel from bsp how to increase excel column width to wrap text
    in each column.
    My client does not want to manually click each cell aftet downloading to excel to see full text in each column

    Hi,
    You can achieve this by formatting your output using HTML table tag.
    Try the following code.
      DATA: lv_output  TYPE string.
      concatenate
      '<table border="1">'
      '<tr style="font-weight: bold; text-align:center; "><td>Name</td><td width="150">Description</td></tr>' cl_abap_char_utilities=>cr_lf
      '<tr><td>First Name</td><td>Some Description goes here..... ....... ...... </td></tr>' cl_abap_char_utilities=>cr_lf
      '<tr><td>2nd Name</td><td>XYZ.......</td></tr>' cl_abap_char_utilities=>cr_lf
      '</table>'
      into lv_output.
      response->set_cdata( data = lv_output ).
    Regards
    Geogy
    PS. Reward the useful answers.

  • Save as Excel - Chart become picture in BO4

    in BO XI 3.1, if we save  as excel,
    the chart is still a Excel Chart in Excel file
    But in BO 4, if we save as excel
    the chart in Webi will become Picture in Excel file
    if is a bugs or SAP removed this feature in BO4?
    Thanks.
    John Kong

    Hi,
    If you wish to change this functionality, you could log your request at http://www.ideas.sap.com. It is an open forum where other users can see your request and can vote for it.
    Regards,
    Nakul Mehta

  • Acrobat X Pro does not print Excel charts from 2010 Word doc to PDF correctly

    Hi,
    I am trying to create a PDF from Word 2010 using Adobe Acrobat X and preserve hyperlinks but when I go through the PDF maker toolbar, the Excel charts in the Word file do not print correctly. They come up as large white boxes with a small grey arrow icon in the lower-right corner (looks like a "play" button). Does anyone know why this is and if there's a solution to this problem? Is there an update or a fix? I have a lot of Excel charts in the Word file...
    Thanks in adavance,
    Kika

    Hello,
    i am having exactly the same issue with Acrobat X Pro - with linked Excel 2010 tables in Word 2010.
    Has there been a resolution to this eissue - it is potentially very time consuming to work around this issue for me.
    I would post my files but I don't know how to attach them to the thread - only my second post .
    Cheers,
    slobbering_dog
    This is the Word File - the table is an Excel 2010 spreadsheet linked (via Paste Special >Link) .
    This is the resultant PDF file:
    Thanks in advance - again !!
    Message was edited by: slobbering_dog_72

  • Excel chart alignment problems when creating PDF

    My excel chart is off set on my PDF page after creating PDF from Macro.  The chart is within my print areas in excel and no matter where I position the chart in excel the chart shows up like it is indented on the PDF and runs off the page.  I can print from excel and the results are fine.  I am operating a windows 2007 64 bit machine with excel 2007 and ADOBE Acrobat 9 Pro & Adobe Reader X.
    I am running the following code by Ron de Bruin to generate the PDF
    Myvar.ExportAsFixedFormat _
       Type:=xlTypePDF, _
       FileName:=Fname, _
       Quality:=xlQualityStandard, _
       IncludeDocProperties:=True, _
       IgnorePrintAreas:=False, _
      OpenAfterPublish:=OpenPDFAfterPublish
    No matter what I do I can not get the chart completely in the page through VBA.  The VBA code works fine it is the results of the PDF I can't seem to fix.
    Many thanks for any help.

    Hi,
         I tried to do the same with a Excel having a so much content. I tried to print that file into a PDF file, I saw the output file as expected. I think there might be some different settings in your PDF printer. Can you please send me the screenshot of PDF Printer Dialog Box launched after invoking Print To PDF from Excel?

  • Is it possible to write a script for Excel Chart Conversion to an ai file?

    I tried to record a script and it didn’t work. I will attempt to explain what I am doing (and why) and maybe you guys can tell me if it can be done or not. We are working with Excel charts and we eventually put them into InDesign for a print magazine. Here are the steps as best as I can translate. We are using Illustrator CS6 Version 16.2.0.
    1. Copy Chart from Excel
    2. Paste into Illustrator
    3. Fit Art Board to Graphic
    4. Select All
    5. Change Kerning to 0
    6. Select the Background
    7. Select Same Fill Color
    8. Change Color to 5% Black
    9. Select the grid lines on the Chart
    10. Change the Stroke to 50% Black
    11. Save as an AI file
    There is also a scenario where there are multiple charts and we would like to make multiple art boards in the same file.
    I do this for a few reasons: Remove Rich Black, Adjust Kerning, Eliminate any Font Issues, Easier to Scale, and it chokes our rip because there is no link when they are copied and pasted directly from Excel to InDesign.
    Any guidance would be appreciated. 

    no can do, there's no access to mesh point with scripting, sorry about that.
    have you tried Mesh Tormentor? it is free!!!, but I don't know if it will help with your problem
    http://www.meshtormentor.com/

  • Why are excel charts copied to Illustrator CS 5.1 now coming in as pictures?

    I've been creating charts in Excel 2004 for Mac for years and copying them into Illustrator. They have always previously pasted into Illustrator as vectors illustrations. I've created hundreds of charts in Excel before and copied them to Illustrator to "dress them up" for reports with no problems. I just created a chart in Excel 2004 for Mac and copied it to Illustrator and it came in as a picture. This is the first time I have ever had this happen with an Excel chart.
    I've searched various sites and have not found anyone who's run into this issue.
    Any ideas?

    I have never printed to pdf from Excel. I have always just copied the actual chart and pasted it into Illustrator, then worked on it there.
    The image below is from one of the charts that originated in Excel and then was "dressed up" in Illustrator. It was a fairly complicated chart but it came into Illustrator with no problems whatsoever. (The Excel chart was fairly basic - specifically to avoid any issues when pasting into Illustrator.) All of the drop shadows and other embellishments were made in Illustrator.
    My system has not changed  - other than the usual MS Office updates.

  • Copy Excel Chart into Illustrator: Problem with dotted lines

    Copying an excel chart (2010 and/or 2013, Windows 7 Ultimate) to Illustrator CS6 works okay if line chart lines are solid... but if they are dotted, then in Excel 2010, the dotted line becomes jumbled, and in Excel 2013, the dotted line converts to a solid line... is the only solution to this to save the exel chart as a pdf, or is there another workaround?
    Essentially, I am creating a chart in excel and adding a few notations and graphic elements in illustrator for professional publishing...
    any help would be appreciated... thanks

    This is a follow-up (somehow, my original question was logged under OOBIMICHAEL):
    I finally broke down and bought a MacBook Pro, installed CS6 and Office 2011... and voilà... dotted lines copy from excel to illustrator just perfectly... this is a bit like copying data from Visio to Word, etc... these programs render graphics in very different ways... other than the Mac solution, I also tried the Libre Suite (open source)... which also worked perfectly to copy excel data with dotted lines to illustrator... so, until MS and Adobe actually collaborate together to provide value to its customers, the alternative seems (1) open source, (2) buy a Mac...

  • Excel charts become blury when pasted...help?

    Hi,
    I am using CS4 on Windows 7.
    I am putting together a report which requires me to insert Excel charts into my InDesign document.
    I am having a problem...when I "paste" the copied chart over into InDesign, parts of the chart look pixelated and fuzzy/blury.
    I have tried various things such as making the chart bigger and smaller then pasting, it seems to get worse. I also tried just doing a screenshot of my chart then making it into a JPG in Photoshop and placing that. It worked very well with one chart, but all the others are even worse than when I just paste.
    Does anyone know of this problem? I want this preentation to look really professional, and fuzzy lines around my bar chart just won't do!
    Please help??
    Thanks!

    Thanks for the suggestions guys
    Well, I tried making it a lot larger in excel and then doing the copy/paste. The graphic itself came out nice and crisp, but the text on the axis i now so tiny you cannot read it, nor the text in the legend. Getting frustrated!
    I also tried the copy/paste into Illustrator and save out as a .AI file then file>place. This came out with very rough edges and looking awful. I don't use AI and really don't know what I am doing so I could be doing it wrong.
    Sigh.....it seems SO simple, very frustrating!
    Any suggestion to remedy this?
    Thanks a million!

  • How to make excel columns width autofit  ?

    Hello  Experts ,
    I download data from an internal table  to create an excel attached file and send it to customers by mail. The excel sheet looks untidy .
    the columns width of excel are not autofit .
    It's default 8.43 character .  Costomers can not use equally excel tools. eg.  format->column->autofit selection in excel.
    I was wondering how to make all excel columns' width autofit by means of ABAP . Is there any way to reach this property of excel via SAP  when I send excel attached files from an internal table .
    suggestions will be rewarded .
    Regards ,

    Hi Rajkumar or all,
    If any one able to display the records more than 65k line in Bex report v7.0..
    Pls reply with detail expalination.. Thanks in advance.. will give the reward points..
    Waiting urgently for your response..

  • Link in Word to Excel chart stored in SharePoint

    I want to embed chart from Excel in Word document. Both Excel and Word documents are saved in SharePoint library. What I did, was to paste chart from Excel with "link data" option enabled. I also went to Links window and set "Update method
    for seected link" to "Automatic update". 
    This works great, asking me to update chart everytime I open Word document, which is exactly what I want. Only as long as I have Excel file open. (I noticed, that when the file was on local PC, instead of SharePoint, it worked without opening Excel). When
    Excel is not open, chart is not refreshed. 
    If I go to Client Tools -> Design ribbon and click on Edit Data, source is opened in window and chart is updated. 
    My question is:
    How can I force chart to update with data, that might have changed in Excel located on SharePoint? Macro, that would open the file is fine. 
    Making users go thru ribbon and "edit data" option is unfortunately too complicated for inexperienced users. I need one-button-click solution or something that works automaticaly. 

    Hi Tschareck,
    According to your description , my understanding is that you want to update the excel chart data when editing the chart in the word.
    As a workaround, I suggest you can use SharePoint ItemUpdated Event Receiver, when you updated the chart data in the word, then reupload the excel file in the event receiver.
    Here are some detailed code demo for your reference:
    How to: Create an Event Receiver
    programmatically upload file to sharepoint list
    Best Regards 
    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]
    Zhengyu Guo
    TechNet Community Support

Maybe you are looking for

  • Network drives do not show up on Desktop or in Sidebar

    I have a user who is experiencing a weird problem. When they connect to a Windows server over our LAN, the server does not show on their desktop, nor does it show in the sidebar. I have checked the boxes in Finder/Preferences to show network drives o

  • Can the Portal Activity Report show unique users per page?

    Hello all I guess this is a rather simple question, but can someone tell me if the portal activity report can show a count of unique users per page per week for instance? Or will it just show which users have visited the page in a list without aggreg

  • Lightroom 4 tethering unusable with Nikon D800

    I am on LR 4.4 using Nikon D800E. I had been using LR tethered with some intermittent locking issues since LR 3 with my Nikon D300. About 4 months ago, I purchased a Nikon D800E and started to use it tethered (as I had done with the D300) with LR 4.

  • Nokia N8 update to Feature Pack Lite 1

    Hello, my phone formely locked to Vodaphone (now unlocked) still hasn't recieved the latest firmware update. It is running of Giffgaff currently. I'd quite like the update, can anyonme give me a hand please.

  • Missing Data Target in Infopackage for Update ODS Data in Data Target Cube

    Hello & Best Wishes for the New Year to all of you, I have 3 ODS (1 on Full Update and 2 with Delta Updates). All these 3 ODS update data to a single CUBE. In my development system this works correctly. Data load from PSA to ODS to Cube. Now I transp