14 lines
296 B
C#
14 lines
296 B
C#
using ShabComponentsLibrary.Enums;
|
|
|
|
namespace ShabComponentsLibrary.OfficePackage.HelperModels
|
|
{
|
|
internal class PdfChartParameters
|
|
{
|
|
public Dictionary<string, int[]> Data = new();
|
|
|
|
public string Title = string.Empty;
|
|
|
|
public LegendPosition LegendPosition = LegendPosition.Bottom;
|
|
}
|
|
}
|