You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
981 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace mseedChart.Main.Models
{
public class LineDatas
{
private string lable;
public string Lable
{
get { return lable; }
set { lable = value; }
}
private string color;
public string Color
{
get { return color; }
set { color = value; }
}
private double smoothTension;
public double SmoothTension
{
get { return smoothTension; }
set { smoothTension = value; }
}
private double[] xData;
public double[] XData
{
get { return xData; }
set { xData = value; }
}
private double[] yData;
public double[] YData
{
get { return yData; }
set { yData = value; }
}
}
}