Click here to Skip to main content
Sign Up to vote bad
good
I want to change the Xvalues in excel chart using Interop. Following is what I am using. But it is not recognising Range.
 
Can anybody help me solve this?
 
chartPage.SetSourceData Range("A2:A4"), xlColumns
chartPage.SeriesCollection(1).XValues = Range("B2:B4");
 
It is not accepting Range, everywhere I am finding same answer.
 
Thank you.
Posted 10-Feb-13 21:42pm
Shami C332


1 solution

I've hit this before and got around it like this...
 
Change your using statement to give it an alias, for example ...
using xl = Microsoft.Office.Interop.Excel;
Then use this alias when referring to Range, for example ...
chartPage.SeriesCollection(1).XValues = xl.Range("B2:B4");
  Permalink  

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Christian Graus 393
1 Michael Haephrati 390
2 Prasad_Kulkarni 390
3 OriginalGriff 320
4 CPallini 259
0 Sergey Alexandrovich Kryukov 6,824
1 Prasad_Kulkarni 3,671
2 _Amy 3,312
3 OriginalGriff 3,309
4 CPallini 2,925


Advertise | Privacy | Mobile
Web03 | 2.6.130617.1 | Last Updated 11 Feb 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid