Spire.XLS is a professional Excel API that enables developers to create, manage, manipulate, convert and print Excel worksheets. Get free and professional technical support for Spire.XLS for .NET, Java, Android, C++, Python.

Thu Apr 19, 2012 1:22 pm

Hello,

I have troubles creating a simple column chart. Creation works fine but I get a warning when I open the xlsx : "Excel has encountered some unreadable content....".
I made a sample application with the simplest code :

Code: Select all
private void Form1_Load(object sender, EventArgs e)
        {
            Workbook Book = new Workbook();
            Book.LoadFromFile(Application.StartupPath + "\\Sample.xlsx");

            Chart MyChart = Book.Worksheets[0].Charts.Add(ExcelChartType.ColumnClustered);
            MyChart.LeftColumn = 4;
            MyChart.RightColumn = 14;
            MyChart.TopRow = 1;
            MyChart.BottomRow = 11;
            MyChart.DataRange = Book.Worksheets[0].Range[1, 1, 15, 2];

            Book.SaveToFile("c:\\Test.xlsx");
            System.Diagnostics.Process.Start("c:\\Test.xlsx");
            this.Close();
        }


you will find Sample.xlsx as attachment. I had to compress it since this forum does not allow xlsx files to be uploaded (funny isn't it ? :p).

Thanks in advance and Have a nice day !

Michael.
Attachments
Sample.rar
(5.37 KiB) Downloaded 549 times

mmelloff
 
Posts: 3
Joined: Sat Apr 07, 2012 9:17 pm

Fri Apr 20, 2012 9:16 am

Hi Michael,

Thank you for reporting this problem to us.

We are so sorry that we need some more time to fix this problem. At the moment I cannot provide you any reliable estimate regarding this issue. However, you will surely be notified as soon as it is resolved. Sorry for inconvenience.

In case of any ambiguity, please let me know. Have a great day!


With best regards
Suvi
e-iceblue support
User avatar

Suvi.Wu
 
Posts: 154
Joined: Thu Oct 20, 2011 2:53 am

Fri May 04, 2012 3:17 pm

Hello,

Thank you for your answer.


I would really appreciate an estimated delay (even with low precision) so I know if it is worth waiting or not.

Thanks in advance and have a nice week end !


Michael.

mmelloff
 
Posts: 3
Joined: Sat Apr 07, 2012 9:17 pm

Mon May 07, 2012 2:55 am

Hi Michael,

we are so sorry for keeping you wait for a long time. As the problem you feed back has already been fixed, the newest hotfix will be released in this week. You will also be informed once their is any updata on this issue.

Regards
Eric
e-iceblue support
e-iceblue Co.,Ltd

Eric
 
Posts: 17
Joined: Tue Apr 24, 2012 4:53 am

Tue May 08, 2012 5:48 am

mmelloff wrote:Hello,

Thank you for your answer.


I would really appreciate an estimated delay (even with low precision) so I know if it is worth waiting or not.

Thanks in advance and have a nice week end !


Michael.


Hi Michael,

Your problem has been fixed, please download the last release v6.6 from http://www.e-iceblue.com/Download/download-excel-for-net-now.html

Best Regards
Eric
E-iceblue support
E-iceblue Co.,Ltd

Eric
 
Posts: 17
Joined: Tue Apr 24, 2012 4:53 am

Wed May 09, 2012 9:37 am

Hello,

thank you for the fix and have a nice day !

Michael.

mmelloff
 
Posts: 3
Joined: Sat Apr 07, 2012 9:17 pm

Thu Jun 28, 2012 3:42 am

Please feel free to contact us for anything at any time. Have a great day!
e-iceblue support
User avatar

iceblue support
 
Posts: 240
Joined: Tue Dec 21, 2010 2:56 am

Return to Spire.XLS