Skip to content

Commit

Permalink
porting #1452 into master
Browse files Browse the repository at this point in the history
  • Loading branch information
liuxuan30 committed Sep 20, 2016
1 parent 42a9877 commit ebb3e6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/Charts/Charts/BarChartView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ open class BarChartView: BarLineChartViewBase, BarChartDataProvider
{
_xAxis.calculate(
min: data.xMin - data.barWidth / 2.0,
max: data.xMax - data.barWidth / 2.0)
max: data.xMax + data.barWidth / 2.0)
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion Source/Charts/Charts/PieRadarChartViewBase.swift
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@ open class PieRadarChartViewBase: ChartViewBase
let location = recognizer.location(in: self)

let high = self.getHighlightByTouchPoint(location)
self.highlightValue(high)
self.highlightValue(highlight: high, callDelegate: true)
}
}

Expand Down

0 comments on commit ebb3e6b

Please sign in to comment.