No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Enums.cs 354B

123456789101112131415161718
  1. namespace XCharts.Runtime
  2. {
  3. /// <summary>
  4. /// the layout is horizontal or vertical.
  5. /// |垂直还是水平布局方式。
  6. /// </summary>
  7. public enum Orient
  8. {
  9. /// <summary>
  10. /// 水平
  11. /// </summary>
  12. Horizonal,
  13. /// <summary>
  14. /// 垂直
  15. /// </summary>
  16. Vertical
  17. }
  18. }