24 lines
590 B
C#
24 lines
590 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ExcelComponents.Models
|
|
{
|
|
public class LinearChartConfig : ExcelConfig
|
|
{
|
|
public string ChartTitle { get; set; }
|
|
public List<(string, double[])> Data {get; set;}
|
|
public string[] Labels { get; set; }
|
|
public ChartLegendPosition LegendPosition { get; set; }
|
|
public LinearChartConfig()
|
|
{
|
|
ChartTitle = string.Empty;
|
|
Data = new List<(string, double[])>();
|
|
Labels = Array.Empty<string>();
|
|
LegendPosition = ChartLegendPosition.Right;
|
|
}
|
|
}
|
|
}
|