CalendarCoord.cs 394 B

12345678910111213141516171819
  1. using System;
  2. using UnityEngine;
  3. namespace XCharts.Runtime
  4. {
  5. [Serializable]
  6. [ComponentHandler(typeof(CalendarCoordHandler), true)]
  7. public class CalendarCoord : CoordSystem, IUpdateRuntimeData, ISerieContainer
  8. {
  9. public bool IsPointerEnter()
  10. {
  11. return false;
  12. }
  13. public void UpdateRuntimeData(BaseChart chart)
  14. {
  15. }
  16. }
  17. }