2021-11-23 13:20:07 +08:00
|
|
|
using System;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
2022-02-19 22:37:57 +08:00
|
|
|
namespace XCharts.Runtime
|
2020-03-29 10:57:59 +08:00
|
|
|
{
|
2021-11-23 13:20:07 +08:00
|
|
|
[Serializable]
|
|
|
|
|
[ComponentHandler(typeof(CalendarCoordHandler), true)]
|
|
|
|
|
public class CalendarCoord : CoordSystem, IUpdateRuntimeData, ISerieContainer
|
2020-03-29 10:57:59 +08:00
|
|
|
{
|
2021-11-23 13:20:07 +08:00
|
|
|
public bool IsPointerEnter()
|
2020-03-29 10:57:59 +08:00
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2021-11-23 13:20:07 +08:00
|
|
|
|
|
|
|
|
public void UpdateRuntimeData(float chartX, float chartY, float chartWidth, float chartHeight)
|
2022-05-22 22:17:38 +08:00
|
|
|
{ }
|
2020-03-29 10:57:59 +08:00
|
|
|
}
|
|
|
|
|
}
|