添加项目文件。
This commit is contained in:
36
CapMachine.Wpf/Models/ChartConfig.cs
Normal file
36
CapMachine.Wpf/Models/ChartConfig.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Media;
|
||||
|
||||
namespace CapMachine.Wpf.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// 曲线的配置
|
||||
/// </summary>
|
||||
public class ChartConfig
|
||||
{
|
||||
public List<Color> ListColor = new List<Color>()
|
||||
{
|
||||
Colors.White,
|
||||
Colors.Red,
|
||||
Colors.Blue,
|
||||
Colors.Green,
|
||||
Colors.Orange,
|
||||
Colors.Brown,
|
||||
Colors.Lime,
|
||||
Colors.LightBlue,
|
||||
Colors.Yellow,
|
||||
Colors.BurlyWood,
|
||||
Colors.Gold,
|
||||
Colors.Magenta,
|
||||
Colors.MediumVioletRed,
|
||||
Colors.MintCream,
|
||||
Colors.Cornsilk,
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user