RadarLine.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. // ***********************************************************************
  2. // Assembly : HZH_Controls
  3. // Created : 2019-09-25
  4. //
  5. // ***********************************************************************
  6. // <copyright file="RadarLine.cs">
  7. // Copyright by Huang Zhenghui(黄正辉) All, QQ group:568015492 QQ:623128629 Email:623128629@qq.com
  8. // </copyright>
  9. //
  10. // Blog: https://www.cnblogs.com/bfyx
  11. // GitHub:https://github.com/kwwwvagaa/NetWinformControl
  12. // gitee:https://gitee.com/kwwwvagaa/net_winform_custom_control.git
  13. //
  14. // If you use this code, please keep this note.
  15. // ***********************************************************************
  16. using System;
  17. using System.Collections.Generic;
  18. using System.Drawing;
  19. using System.Linq;
  20. using System.Text;
  21. namespace HZH_Controls.Controls
  22. {
  23. /// <summary>
  24. /// Class RadarLine.
  25. /// </summary>
  26. public class RadarLine
  27. {
  28. /// <summary>
  29. /// Gets or sets the name.
  30. /// </summary>
  31. /// <value>The name.</value>
  32. public string Name { get; set; }
  33. /// <summary>
  34. /// Gets or sets the values.
  35. /// </summary>
  36. /// <value>The values.</value>
  37. public double[] Values { get; set; }
  38. /// <summary>
  39. /// Gets or sets the color of the line.
  40. /// </summary>
  41. /// <value>The color of the line.</value>
  42. public Color? LineColor { get; set; }
  43. /// <summary>
  44. /// Gets or sets a value indicating whether [show value text].
  45. /// </summary>
  46. /// <value><c>true</c> if [show value text]; otherwise, <c>false</c>.</value>
  47. public bool ShowValueText { get; set; }
  48. /// <summary>
  49. /// Gets or sets the color of the fill.
  50. /// </summary>
  51. /// <value>The color of the fill.</value>
  52. public Color? FillColor { get; set; }
  53. }
  54. }