| 1234567891011121314151617 | using System.Collections.Generic;using UnityEngine;namespace XCharts.Runtime{    public class GridCoordContext : MainComponentContext    {        public float x;        public float y;        public float width;        public float height;        public Vector3 position;        public Vector3 center;        public bool isPointerEnter;        public List<ChartLabel> endLabelList = new List<ChartLabel>();    }}
 |