• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.github.mikephil.charting.interfaces.datasets;
2 
3 import android.graphics.DashPathEffect;
4 
5 import com.github.mikephil.charting.data.Entry;
6 
7 /**
8  * Created by Philipp Jahoda on 21/10/15.
9  */
10 public interface ILineScatterCandleRadarDataSet<T extends Entry> extends IBarLineScatterCandleBubbleDataSet<T> {
11 
12     /**
13      * Returns true if vertical highlight indicator lines are enabled (drawn)
14      * @return
15      */
isVerticalHighlightIndicatorEnabled()16     boolean isVerticalHighlightIndicatorEnabled();
17 
18     /**
19      * Returns true if vertical highlight indicator lines are enabled (drawn)
20      * @return
21      */
isHorizontalHighlightIndicatorEnabled()22     boolean isHorizontalHighlightIndicatorEnabled();
23 
24     /**
25      * Returns the line-width in which highlight lines are to be drawn.
26      * @return
27      */
getHighlightLineWidth()28     float getHighlightLineWidth();
29 
30     /**
31      * Returns the DashPathEffect that is used for highlighting.
32      * @return
33      */
getDashPathEffectHighlight()34     DashPathEffect getDashPathEffectHighlight();
35 }
36