31 lines
715 B
C#
31 lines
715 B
C#
using DocumentFormat.OpenXml.Drawing;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KOP_Labs.Classes
|
|
{
|
|
public class MyHistogramm
|
|
{
|
|
public string _filePath = string.Empty;
|
|
|
|
public string _fileHeader = string.Empty;
|
|
|
|
public string _histogramName = string.Empty;
|
|
|
|
public EnumLegends _legends;
|
|
|
|
public List<DataHistogramm> _dataList = new();
|
|
public MyHistogramm(string filePath, string fileHeader, string histogramName, EnumLegends legends, List<DataHistogramm> dataList) {
|
|
_filePath = filePath;
|
|
_fileHeader = fileHeader;
|
|
_histogramName = histogramName;
|
|
_legends = legends;
|
|
_dataList = dataList;
|
|
}
|
|
|
|
}
|
|
}
|