暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }