Files
ZHGD_Web/SelfPackages/XCharts/Runtime/Coord/Grid/GridCoordContext.cs
2025-07-13 23:16:20 +08:00

17 lines
428 B
C#

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>();
}
}