mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-20 07:20:08 +00:00
20 lines
443 B
C#
20 lines
443 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(float chartX, float chartY, float chartWidth, float chartHeight)
|
|
{
|
|
}
|
|
}
|
|
} |