暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CalendarCoord.cs 434B

123456789101112131415161718
  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(float chartX, float chartY, float chartWidth, float chartHeight)
  14. { }
  15. }
  16. }