• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.github.mikephil.charting.highlight;
2 
3 /**
4  * Created by philipp on 10/06/16.
5  */
6 public interface IHighlighter
7 {
8 
9     /**
10      * Returns a Highlight object corresponding to the given x- and y- touch positions in pixels.
11      *
12      * @param x
13      * @param y
14      * @return
15      */
getHighlight(float x, float y)16     Highlight getHighlight(float x, float y);
17 }
18