No Description
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.

TooltipContext.cs 501B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using UnityEngine;
  5. using UnityEngine.UI;
  6. using XUGL;
  7. namespace XCharts.Runtime
  8. {
  9. public class TooltipData
  10. {
  11. public string title;
  12. public List<SerieParams> param = new List<SerieParams>();
  13. }
  14. public class TooltipContext
  15. {
  16. public Vector2 pointer;
  17. public float width;
  18. public float height;
  19. public float angle;
  20. public TooltipData data = new TooltipData();
  21. }
  22. }