using System.Collections.Generic; using UnityEngine; using EasyChart.Layers; namespace EasyChart { public interface IChartHitTestPolicy { bool TryBuildTooltipItems( TooltipContext context, IList renderers, List items, ref Vector2? cursorPosition, ref string categoryLabel); } }