File tree 1 file changed +0
-10
lines changed
MPChartLib/src/main/java/com/github/mikephil/charting/interfaces/dataprovider 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -16,38 +16,28 @@ public interface ChartInterface {
16
16
17
17
/**
18
18
* Returns the minimum x value of the chart, regardless of zoom or translation.
19
- *
20
- * @return
21
19
*/
22
20
float getXChartMin ();
23
21
24
22
/**
25
23
* Returns the maximum x value of the chart, regardless of zoom or translation.
26
- *
27
- * @return
28
24
*/
29
25
float getXChartMax ();
30
26
31
27
float getXRange ();
32
28
33
29
/**
34
30
* Returns the minimum y value of the chart, regardless of zoom or translation.
35
- *
36
- * @return
37
31
*/
38
32
float getYChartMin ();
39
33
40
34
/**
41
35
* Returns the maximum y value of the chart, regardless of zoom or translation.
42
- *
43
- * @return
44
36
*/
45
37
float getYChartMax ();
46
38
47
39
/**
48
40
* Returns the maximum distance in scren dp a touch can be away from an entry to cause it to get highlighted.
49
- *
50
- * @return
51
41
*/
52
42
float getMaxHighlightDistance ();
53
43
You can’t perform that action at this time.
0 commit comments