Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ abstract class BaseDataSet<T : Entry>() : IDataSet<T> {

override var valueFormatter: IValueFormatter
get() = if (needsFormatter())
Utils.getDefaultValueFormatter()
Utils.defaultValueFormatter
else
mValueFormatter!!
set(value) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ open class XAxisRenderer(
}

protected fun drawLabel(canvas: Canvas, formattedLabel: String?, x: Float, y: Float, anchor: MPPointF, angleDegrees: Float) {
Utils.drawXAxisValue(canvas, formattedLabel, x, y, paintAxisLabels, anchor, angleDegrees)
formattedLabel?.let { Utils.drawXAxisValue(canvas, it, x, y, paintAxisLabels, anchor, angleDegrees) }
}

protected open var renderGridLinesPath: Path = Path()
Expand Down
329 changes: 0 additions & 329 deletions MPChartLib/src/main/java/com/github/mikephil/charting/utils/Utils.java

This file was deleted.

Loading
Loading