You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// the array of y-values that this DataSet represents.
public var yVals: [ChartDataEntry]
{
get
{
return _yVals
}
set
{
_yVals = newValue
notifyDataSetChanged()
}
}
set1 = (LineChartDataSet *)_chartView.data.dataSets[0];
set1.yVals = yVals; ("Assignment to readonly property")
_chartView.data.xValsObjc = xVals; ("Assignment to readonly property")
[_chartView notifyDataSetChanged];
I am using charts library in objective-c project via cocoa-pod
The text was updated successfully, but these errors were encountered: