Sign in

游杰 / WMS · Files

Logo

GitLab

  • Back to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • WMS
  • ..
  • highlight
  • IHighlighter.java
  • 增加看板功能
    84e09a71
    游杰 authored
    2018-10-31 09:11:44 +0800  
    Browse Dir »
IHighlighter.java 341 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package com.github.mikephil.charting.highlight;

/**
 * Created by philipp on 10/06/16.
 */
public interface IHighlighter
{

    /**
     * Returns a Highlight object corresponding to the given x- and y- touch positions in pixels.
     *
     * @param x
     * @param y
     * @return
     */
    Highlight getHighlight(float x, float y);
}