We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6830338 commit afd52f2Copy full SHA for afd52f2
MPChartLib/src/main/java/com/github/mikephil/charting/formatter/DefaultFillFormatter.java
@@ -5,13 +5,14 @@
5
import com.github.mikephil.charting.interfaces.dataprovider.LineDataProvider;
6
import com.github.mikephil.charting.interfaces.datasets.ILineDataSet;
7
8
+import java.io.Serializable;
9
+
10
/**
11
* Default formatter that calculates the position of the filled line.
12
*
13
* @author Philipp Jahoda
14
*/
-public class DefaultFillFormatter implements IFillFormatter
-{
15
+public class DefaultFillFormatter implements IFillFormatter, Serializable {
16
17
@Override
18
public float getFillLinePosition(ILineDataSet dataSet, LineDataProvider dataProvider) {
0 commit comments