BasePlot.cs 786 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Veldrid.Common.Plot
  5. {
  6. public abstract class BasePlot : BaseSeries
  7. {
  8. private bool isFocused;
  9. protected BasePlot(IVeldridContent control) : base(control)
  10. {
  11. }
  12. public virtual System.String Label { get; set; } = String.Empty;
  13. public virtual float Brightness { get; set; }
  14. public virtual bool LabelVisibility { get; set; } = true;
  15. public virtual System.Boolean IsFocused { get; set; }
  16. public virtual LineStyle LineStyle { get; set; }
  17. public virtual String FontName { get; set; } = "Arila";
  18. public virtual String FontStyle { get; set; } = "Regular";
  19. public virtual float FontSize { get; set; } = 12;
  20. }
  21. }