File tree Expand file tree Collapse file tree 2 files changed +1
-10
lines changed
MPChartLib/src/main/java/com/github/mikephil/charting/interfaces/datasets
app/src/main/java/info/appdev/chartexample Expand file tree Collapse file tree 2 files changed +1
-10
lines changed Original file line number Diff line number Diff line change 55import com .github .mikephil .charting .data .PieDataSet ;
66import com .github .mikephil .charting .data .PieEntry ;
77
8- /**
9- * Created by Philipp Jahoda on 03/11/15.
10- */
118public interface IPieDataSet extends IDataSet <PieEntry > {
129
1310 /**
1411 * Returns the space that is set to be between the piechart-slices of this
1512 * DataSet, in pixels.
16- *
17- * @return
1813 */
1914 float getSliceSpace ();
2015
2116 /**
2217 * When enabled, slice spacing will be 0.0 when the smallest value is going to be
2318 * smaller than the slice spacing itself.
24- *
25- * @return
2619 */
2720 boolean isAutomaticallyDisableSliceSpacingEnabled ();
2821
2922 /**
3023 * Returns the distance a highlighted piechart slice is "shifted" away from
3124 * the chart-center in dp.
32- *
33- * @return
3425 */
3526 float getSelectionShift ();
3627
Original file line number Diff line number Diff line change @@ -194,7 +194,7 @@ class DataTools {
194194
195195 // customize legend entry
196196 lineDataSet01.formLineWidth = 1f
197- lineDataSet01.formLineDashEffect = DashPathEffect (floatArrayOf(10f , 5f ), 0f )
197+ lineDataSet01.setFormLineDashEffect( DashPathEffect (floatArrayOf(10f , 5f ), 0f ) )
198198 lineDataSet01.formSize = 15f
199199
200200 // text size of values
You can’t perform that action at this time.
0 commit comments