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 1a94360 commit 02ae298Copy full SHA for 02ae298
MPChartExample/src/main/java/com/xxmassdeveloper/mpchartexample/DataTools.kt
@@ -194,8 +194,10 @@ class DataTools {
194
195
// set the filled area
196
lineDataSet0.setDrawFilled(true)
197
- lineDataSet0.fillFormatter = IFillFormatter { _: ILineDataSet?, _: LineDataProvider? ->
198
- lineChart.axisLeft.axisMinimum
+ lineDataSet0.fillFormatter = object : IFillFormatter {
+ override fun getFillLinePosition(dataSet: ILineDataSet?, dataProvider: LineDataProvider?): Float {
199
+ return lineChart.axisLeft.axisMinimum
200
+ }
201
}
202
203
// set color of filled area
0 commit comments