18 lines
473 B
C#
18 lines
473 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Components.SaveToPdfHelpers
|
|
{
|
|
public class HistogramData
|
|
{
|
|
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; }
|
|
}
|
|
}
|