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

21 lines
538 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 float left;
public float right;
public float bottom;
public float top;
public bool isPointerEnter;
public List<ChartLabel> endLabelList = new List<ChartLabel>();
2021-11-23 13:20:07 +08:00
}
}