Skip to content

Commit

Permalink
Added missing _yVals initializer (Fixes #734)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgindi committed Feb 4, 2016
1 parent 0ca505d commit eb42279
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,14 @@ public class ChartDataSet: ChartBaseDataSet
{
super.init()

_yVals = [ChartDataEntry]()
}

public override init(label: String?)
{
super.init(label: label)

_yVals = [ChartDataEntry]()
}

public init(yVals: [ChartDataEntry]?, label: String?)
Expand Down

0 comments on commit eb42279

Please sign in to comment.