GridCoordContext.cs 428 B

1234567891011121314151617
  1. using System.Collections.Generic;
  2. using UnityEngine;
  3. namespace XCharts.Runtime
  4. {
  5. public class GridCoordContext : MainComponentContext
  6. {
  7. public float x;
  8. public float y;
  9. public float width;
  10. public float height;
  11. public Vector3 position;
  12. public Vector3 center;
  13. public bool isPointerEnter;
  14. public List<ChartLabel> endLabelList = new List<ChartLabel>();
  15. }
  16. }