Skip to content

Commit

Permalink
The backing var is not necessary. (#3000)
Browse files Browse the repository at this point in the history
* The backing far is not necessary.

Appears to have been a way to expose the var to obj-c like so many others in the framework.

* Corrections for PR

* Pulled master

* count -> endIndex

where appropriate

* fix a typo ifnot -> if not

Just find a typo ifnot -> if not

* Removed redundant notifyDataSetChanged()
  • Loading branch information
jjatie authored and liuxuan30 committed Dec 14, 2017
1 parent 159e0f7 commit d4a3d4f
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 128 deletions.
2 changes: 1 addition & 1 deletion Source/Charts/Charts/RadarChartView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ open class RadarChartView: PieRadarChartViewBase
open override func notifyDataSetChanged()
{
calcMinMax()

_yAxisRenderer?.computeAxis(min: _yAxis._axisMinimum, max: _yAxis._axisMaximum, inverted: _yAxis.isInverted)
_xAxisRenderer?.computeAxis(min: _xAxis._axisMinimum, max: _xAxis._axisMaximum, inverted: false)

Expand Down
Loading

0 comments on commit d4a3d4f

Please sign in to comment.