PlotConfigModel.cs 399 B

1234567891011121314151617
  1. using OxyPlot;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Shaker.Model
  8. {
  9. public class PlotConfigModel:TableBase
  10. {
  11. public OxyColor Color;
  12. public double StrokeThickness = 1;
  13. public bool IsVisible = true;
  14. public OxyPlot.LineStyle LineStyle = OxyPlot.LineStyle.Solid;
  15. }
  16. }