14 lines
296 B
C#
Raw Normal View History

2024-09-25 00:46:40 +04:00
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;
}
}