VisualComponents/VisualComponentsLib/Components/SupportClasses/SimpleHistogram.cs
2023-10-09 18:14:48 +04:00

32 lines
881 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VisualComponentsLib.Components.SupportClasses.Enums;
namespace VisualComponentsLib.Components.SupportClasses
{
public class SimpleHistogram
{
public string FilePath = string.Empty;
public string FileHeader = string.Empty;
public string HistogramName = string.Empty;
public EnumAreaLegend AreaLegend;
public List<DataHistogram> DataList = new();
public SimpleHistogram(string filePath, string fileHeader, string histogramName, EnumAreaLegend areaLegend, List<DataHistogram> dataList)
{
FilePath = filePath;
FileHeader = fileHeader;
HistogramName = histogramName;
AreaLegend = areaLegend;
DataList = dataList;
}
}
}