暫無描述
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.

CoordSystem.cs 236B

12345678910111213
  1. using System;
  2. namespace XCharts.Runtime
  3. {
  4. /// <summary>
  5. /// Coordinate system component.
  6. /// |
  7. /// 坐标系系统。
  8. /// </summary>
  9. [Serializable]
  10. public abstract class CoordSystem : MainComponent
  11. { }
  12. }