Сдана
This commit is contained in:
parent
caca564260
commit
96234cb606
@ -10,14 +10,11 @@ namespace VisualComponentsLib.Components.SupportClasses
|
||||
{
|
||||
public string NameSeries { get; set; } = string.Empty;
|
||||
|
||||
public string[] NameData { get; set; }
|
||||
|
||||
public double[] Data { get; set; }
|
||||
|
||||
public DataLineChart(string nameSeries, string[] nameData, double[] data)
|
||||
public DataLineChart(string nameSeries, double[] data)
|
||||
{
|
||||
NameSeries = nameSeries;
|
||||
NameData = nameData;
|
||||
Data = data;
|
||||
}
|
||||
}
|
||||
|
@ -16,6 +16,7 @@ namespace VisualComponentsLib.Components.SupportClasses
|
||||
public string LineChartName = string.Empty;
|
||||
|
||||
public EnumAreaLegend AreaLegend;
|
||||
public string[] NameData { get; set; }
|
||||
|
||||
public List<DataLineChart> DataList = new();
|
||||
|
||||
|
@ -57,7 +57,7 @@ namespace VisualComponentsLib.Components
|
||||
|
||||
foreach (var data in simpleLineChart.DataList)
|
||||
{
|
||||
seriesColl.Add(data.NameSeries, data.NameData, data.Data);
|
||||
seriesColl.Add(data.NameSeries, simpleLineChart.NameData, data.Data);
|
||||
}
|
||||
|
||||
ChartLegend legend = chart.Legend;
|
||||
@ -72,7 +72,7 @@ namespace VisualComponentsLib.Components
|
||||
{
|
||||
foreach (var _data in data)
|
||||
{
|
||||
if (string.IsNullOrEmpty(_data.NameSeries) || string.IsNullOrEmpty(_data.NameData.ToString()) || string.IsNullOrEmpty(_data.Data.ToString()))
|
||||
if (string.IsNullOrEmpty(_data.NameSeries) || string.IsNullOrEmpty(_data.Data.ToString())) //аккуратно
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
@ -107,14 +107,17 @@ namespace WinForms
|
||||
{
|
||||
try
|
||||
{
|
||||
string[] month = { "Январь", "Февраль", "Март" };
|
||||
double[] profit1 = { 300, 440, 270 };
|
||||
double[] profit2 = { 500, 620, 310 };
|
||||
double[] profit3 = { 420, 189, 430 };
|
||||
SimpleLineChart lineChart = new(dialog.FileName, "Третье задание", "График прибыли", EnumAreaLegend.Right, new List<DataLineChart> {
|
||||
new DataLineChart("Компания 1", month, profit1), new DataLineChart("Компания 2", month, profit2), new DataLineChart("Компания 3", month, profit3),
|
||||
new DataLineChart("Компания 1", profit1),
|
||||
new DataLineChart("Компания 2", profit2),
|
||||
new DataLineChart("Компания 3", profit3),
|
||||
});
|
||||
|
||||
lineChart.NameData = new string[] { "Январь", "Февраль", "Март" };
|
||||
|
||||
wordLineChart.AddLineChart(lineChart);
|
||||
|
||||
MessageBox.Show("Выполнено", "Успех", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
|
Loading…
Reference in New Issue
Block a user