This question is locked. New answers and comments are not allowed.
When a point exceed a certain value, how can I change it's color ?
The follow is my partial code :
TKChartLineSeries *temperatureSeries = [[TKChartSplineSeries alloc] initWithItems:points];temperatureSeries.style.pointShape = [[TKPredefinedShape alloc] initWithType:TKShapeTypeCircle andSize:CGSizeMake(7, 7)];temperatureSeries.xAxis = timeXAxis;temperatureSeries.yAxis = temperatureYAxis;temperatureSeries.selectionMode = TKChartSeriesSelectionModeDataPoint;temperatureSeries.style.shapeMode = TKChartSeriesStyleShapeModeAlwaysShow; I didn't use the datasource delegate, can I realize it?
By the way, if I use the delegate, how can I make it?