I am using coreplot 0.9 .I had tried setting linecolor property for CPTLineStyle by
CPTLineStyle *lineStyle = [CPTLineStyle lineStyle];
lineStyle.lineColor=[UIColor grayColor];
But it is giving error that linecolor is readonly property. Please give me some solution for this.
There’s another line style type object named, helpfully enough,
CPTMutableLineStyle.That’s where you can set your line color.