How to select a Column series Bar in code
问题 I have a bar graph chart working and I can select bars by tapping them. In -sChart:seriesAtIndex: of my ShinobiChart datasource I have implemented: SChartColumnSeries *series = [[SChartColumnSeries alloc] init]; series.detectTapsOutsideBar = YES; series.selectionMode = SChartSelectionPoint; Which is working well. What I want to do now is to be able to select a specific bar based on the index of the data behind it. How do you do this? I have looked on the chart, the series but cannot find any