Skip to content

Commit

Permalink
Fix setting line color to UIColor not Color
Browse files Browse the repository at this point in the history
  • Loading branch information
ruurd committed Apr 3, 2016
1 parent 55fd0c5 commit 1f73190
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public class PieChartDataSet: ChartDataSet, IPieChartDataSet
public var yValuePosition: PieChartValuePosition = .InsideSlice

/// When valuePosition is OutsideSlice, indicates line color
public var valueLineColor: NSUIColor? = UIColor.blackColor()
public var valueLineColor: NSUIColor? = NSUIColor.blackColor()

/// When valuePosition is OutsideSlice, indicates line width
public var valueLineWidth: CGFloat = 1.0
Expand Down

0 comments on commit 1f73190

Please sign in to comment.