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.

VisualMapContext.cs 583B

123456789101112131415161718192021
  1. using System.Collections.Generic;
  2. using UnityEngine;
  3. namespace XCharts.Runtime
  4. {
  5. public class VisualMapContext : MainComponentContext
  6. {
  7. /// <summary>
  8. /// 鼠标悬停选中的index
  9. /// </summary>
  10. public int pointerIndex { get; set; }
  11. public double pointerValue { get; set; }
  12. public bool minDrag { get; internal set; }
  13. public bool maxDrag { get; internal set; }
  14. public double min { get; set; }
  15. public double max { get; set; }
  16. internal List<Color32> inRangeColors = new List<Color32>();
  17. }
  18. }