Files
XCharts/Runtime/Coord/Grid/GridCoordContext.cs

17 lines
428 B
C#
Raw Normal View History

using System.Collections.Generic;
2021-11-23 13:20:07 +08:00
using UnityEngine;
2022-02-19 22:37:57 +08:00
namespace XCharts.Runtime
2021-11-23 13:20:07 +08:00
{
public class GridCoordContext : MainComponentContext
2021-11-23 13:20:07 +08:00
{
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>();
2021-11-23 13:20:07 +08:00
}
}