I have a proplem regading TeeChart Export Data to Excel.
Is it possible to export into a real Excel Format?
Right now I get an Export in HTML-Style, like this:
My Source:<table border="1">
<tr><td>Index</td><td>Date</td><td>Close</td><td>High</td><td>Low</td><td>Open</td><td>X</td><td>Y</td></tr>
<tr><td>0</td><td>39927.3624740856</td><td>277.887363547407</td><td>279.109581609773</td><td>277.580790470159</td><td>278</td><td>39927.3624740856</td><td>192</td></tr>
</table>
Code: Select all
Steema.TeeChart.Export.ExcelFormat excel = MyC_Alarme.Export.Data.Excel;
excel.IncludeHeader = true;
excel.IncludeIndex = true;
excel.IncludeLabels = true;
excel.TextLineSeparator = ";";
excel.Save(Server.MapPath(Filename));
I hope someone can help me out with this issue.
Is it possible to use the TeeChart Export Dialog in ASP.Net?
greets Centrii