728x90
728x170
DataExport 를 이용해 처리합니다.
using Steema.TeeChart.Export;
using Steema.TeeChart.Styles;
using Steema.TeeChart.Tools;
namespace Win.TeeChartLegendClickTest
{
public partial class ChartForm : Form
{
public ChartForm()
{
InitializeComponent();
// Set SampleData
for (int i = 0; i < 10; i++)
{
Points points = new Points(this.tChart.Chart);
points.XValues.DateTime = true;
points.FillSampleValues(20);
}
}
private void ExcelButton_Click(object sender, EventArgs e)
{
// Save Excel
string fielPath = "d://test.xls";
DataExport dataExport = new DataExport(this.tChart);
ExcelFormat excelFormat = dataExport.Excel;
excelFormat.IncludeHeader = true;
excelFormat.IncludeIndex = true;
excelFormat.IncludeLabels = true;
excelFormat.Save(fielPath);
}
}
}
저장내용
728x90
그리드형
'TeeChart' 카테고리의 다른 글
[TeeChart] Custom Label 표시하기 (0) | 2022.09.19 |
---|---|
[TeeChart] Line 그리기 - ColorLine (0) | 2022.09.19 |
[TeeChart] ToolTip 표시 하기 (0) | 2022.09.19 |
[TeeChart] Legend 의 Series Click 시 선택 Series 강조하기 - .NET6 버그 (0) | 2022.08.26 |
[TeeChart] Zoom In 시 X,Y 축의 Min, Max 값 가져오기 (0) | 2022.08.26 |