2024-10-30 14:26:40 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Components.SaveToPdfHelpers
|
|
|
|
|
{
|
|
|
|
|
public class HistogramData
|
|
|
|
|
{
|
2024-11-02 18:51:07 +04:00
|
|
|
|
public string FilePath { get; set; } = string.Empty;
|
|
|
|
|
public string DocumentTitle { get; set; } = string.Empty;
|
|
|
|
|
public string ChartTitle { get; set; } = string.Empty;
|
|
|
|
|
public LegendPositions LegendPosition { get; set; }
|
|
|
|
|
public List<ChartData>? ChartData { get; set; }
|
2024-10-30 14:26:40 +04:00
|
|
|
|
}
|
|
|
|
|
}
|