17 lines
348 B
C#
Raw Permalink Normal View History

2023-11-16 19:05:42 +04:00
using Microsoft.Office.Interop.Excel;
namespace CustomComponents
{
public class LineChartConfig
{
public string FilePath { get; set; }
public string Header { get; set; }
public string ChartTitle { get; set; }
public Dictionary<string, List<int>> Values { get; set; }
public LegendPosition LegendPosition { get; set; }
}
}