Skip to content

Commit 4604d8a

Browse files
committedJan 5, 2023
..
1 parent c0f36a8 commit 4604d8a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎MPChartLib/src/main/java/com/github/mikephil/charting/data/ScatterDataSet.kt

+1
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ class ScatterDataSet : LineScatterCandleRadarDataSet<Entry>, IScatterDataSet {
125125
ScatterShape.X -> return XShapeRenderer()
126126
ScatterShape.CHEVRON_UP -> return ChevronUpShapeRenderer()
127127
ScatterShape.CHEVRON_DOWN -> return ChevronDownShapeRenderer()
128+
else -> {}
128129
}
129130
return null
130131
}

‎MPChartLib/src/main/java/com/github/mikephil/charting/highlight/ChartHighlighter.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ open class ChartHighlighter<T : BarLineScatterCandleBubbleDataProvider> : IHighl
152152
* @param rounding
153153
* @return
154154
*/
155-
protected fun buildHighlights(
155+
protected open fun buildHighlights(
156156
set: IDataSet<*>?,
157157
dataSetIndex: Int,
158158
xVal: Float,

0 commit comments

Comments
 (0)
Please sign in to comment.