23 lines
787 B
C#
23 lines
787 B
C#
using PutincevLibrary.Enums;
|
|
|
|
namespace PutincevLibrary.Info
|
|
{
|
|
public class ExcelChartInfo
|
|
{
|
|
public string? filePath { get; set; } = string.Empty;
|
|
public string? documentTitle { get; set; } = string.Empty;
|
|
public string? chartTitle { get; set; } = string.Empty;
|
|
public LegendPosition legendPosition { get; set; }
|
|
public List<DataItem>? data { get; set; }
|
|
|
|
public ExcelChartInfo(string? filePath, string? documentTitle, string? chartTitle, LegendPosition legendPosition, List<DataItem>? data)
|
|
{
|
|
this.filePath = filePath;
|
|
this.documentTitle = documentTitle;
|
|
this.chartTitle = chartTitle;
|
|
this.legendPosition = legendPosition;
|
|
this.data = data;
|
|
}
|
|
}
|
|
}
|