FunelChartItem.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // ***********************************************************************
  2. // Assembly : HZH_Controls
  3. // Created : 2019-09-26
  4. //
  5. // ***********************************************************************
  6. // <copyright file="FunelChartItem.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.Linq;
  19. using System.Text;
  20. namespace HZH_Controls.Controls
  21. {
  22. /// <summary>
  23. /// Class FunelChartItem.
  24. /// </summary>
  25. public class FunelChartItem
  26. {
  27. /// <summary>
  28. /// Gets or sets the text.
  29. /// </summary>
  30. /// <value>The text.</value>
  31. public string Text { get; set; }
  32. /// <summary>
  33. /// Gets or sets the value.
  34. /// </summary>
  35. /// <value>The value.</value>
  36. public float Value { get; set; }
  37. /// <summary>
  38. /// Gets or sets the color of the value.
  39. /// </summary>
  40. /// <value>The color of the value.</value>
  41. public System.Drawing.Color? ValueColor { get; set; }
  42. /// <summary>
  43. /// Gets or sets the color of the text fore.
  44. /// </summary>
  45. /// <value>The color of the text fore.</value>
  46. public System.Drawing.Color? TextForeColor { get; set; }
  47. }
  48. }