17 lines
403 B
C#
17 lines
403 B
C#
|
using Microsoft.Office.Interop.Excel;
|
|||
|
|
|||
|
namespace CustomComponents.MyNonVisualComponents
|
|||
|
{
|
|||
|
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; }
|
|||
|
}
|
|||
|
}
|