parent
221400ad32
commit
1f8cb4d8f3
@ -1,2 +1,15 @@ |
||||
package net.pokeranalytics.android.ui.graph |
||||
|
||||
import android.content.Context |
||||
import com.github.mikephil.charting.data.Entry |
||||
import com.github.mikephil.charting.data.LineDataSet |
||||
import net.pokeranalytics.android.R |
||||
|
||||
class PALineDataSet(yVals: List<Entry>, label: String, context: Context) : LineDataSet(yVals, label) { |
||||
|
||||
init { |
||||
this.highLightColor = context.getColor(R.color.chart_highlight_indicator) |
||||
} |
||||
|
||||
|
||||
} |
||||
Loading…
Reference in new issue