19 lines
394 B
C#
19 lines
394 B
C#
|
using System;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace XCharts.Runtime
|
||
|
{
|
||
|
[Serializable]
|
||
|
[ComponentHandler(typeof(CalendarCoordHandler), true)]
|
||
|
public class CalendarCoord : CoordSystem, IUpdateRuntimeData, ISerieContainer
|
||
|
{
|
||
|
public bool IsPointerEnter()
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public void UpdateRuntimeData(BaseChart chart)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|