1234567891011121314151617 |
- using OxyPlot;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Shaker.Model
- {
- public class PlotConfigModel:TableBase
- {
- public OxyColor Color;
- public double StrokeThickness = 1;
- public bool IsVisible = true;
- public OxyPlot.LineStyle LineStyle = OxyPlot.LineStyle.Solid;
- }
- }
|