I have a SChartLineSeries and when I select a point, the selectedPointStyle doesn't seem to get applied.
Here's my code:
-(SChartSeries*)sChart:(ShinobiChart *)chart seriesAtIndex:(NSInteger)index {
SChartLineSeries* lineSeries = [[SChartLineSeries alloc] init];
lineSeries.selectionMode = SChartSelectionPoint;
SChartLineSeriesStyle *style = [SChartLineSeriesStyle new];
style.pointStyle = [SChartPointStyle new];
style.pointStyle.showPoints = YES;
style.pointStyle.color = [UIColor whiteColor];
style.pointStyle.radius = [NSNumber numberWithInt:5];
//style.pointStyle.innerRadius = [NSNumber numberWithFloat:0.0];
style.selectedPointStyle.color = [UIColor orangeColor];
style.selectedPointStyle.radius = [NSNumber numberWithInt:15];
[lineSeries setStyle:style];
//[lineSeries setSelectedStyle:style];
}
Please help. We're in a crunch time. Also, if I have to customize to show a dashed line, is it possible to do so in Shinobi?