Files
XCharts/Runtime/Coord/Calendar/CalendarCoord.cs

19 lines
394 B
C#
Raw Normal View History

2021-11-23 13:20:07 +08:00
using System;
using UnityEngine;
2022-02-19 22:37:57 +08:00
namespace XCharts.Runtime
{
2021-11-23 13:20:07 +08:00
[Serializable]
[ComponentHandler(typeof(CalendarCoordHandler), true)]
public class CalendarCoord : CoordSystem, IUpdateRuntimeData, ISerieContainer
{
2021-11-23 13:20:07 +08:00
public bool IsPointerEnter()
{
return false;
}
2021-11-23 13:20:07 +08:00
2023-08-29 18:30:11 +08:00
public void UpdateRuntimeData(BaseChart chart)
{
}
}
}