This question is locked. New answers and comments are not allowed.
I have a stacked column series and style them by myself i.e.:
but then the series is no longer highlighted when it is selected. I dug through the documentation and examples but couldn't find a simple way
to set an alternative style for selected series.
How do I set the style for selected series? (Without doing everything myself in the delegate)
I also tried to implement the delegate didSelect/didUnselect but noticed that didUnselect is veeery unreliable. Often the non-styled series got unselected by a tap but the delegate was never informed.
Is this an issue or a feature?
Furthermore I noticed that panning is very unresponsive. Oftentimes panning to the right does not work at all, I have to pan a bit left and then turn right, otherwise it does not work. If it works it is very choppy.
How can I improve this?
System:
- Target iOS 7
- iOS SDK 8.2
- Xcode 6.2
- Telerik UI for iOS Q1 2015
Thanks for your reply!
Thomas
- (void)styleColumn:(TKChartSeries*)series activityId:(NSNumber*) id{ series.style.palette = [TKChartPalette new]; UIColor* color = [UIColor someColor]; TKSolidFill *fill = [[TKSolidFill alloc] initWithColor:color]; [series.style.palette addPaletteItem:[[TKChartPaletteItem alloc] initWithFill:fill]];}but then the series is no longer highlighted when it is selected. I dug through the documentation and examples but couldn't find a simple way
to set an alternative style for selected series.
How do I set the style for selected series? (Without doing everything myself in the delegate)
I also tried to implement the delegate didSelect/didUnselect but noticed that didUnselect is veeery unreliable. Often the non-styled series got unselected by a tap but the delegate was never informed.
Is this an issue or a feature?
Furthermore I noticed that panning is very unresponsive. Oftentimes panning to the right does not work at all, I have to pan a bit left and then turn right, otherwise it does not work. If it works it is very choppy.
How can I improve this?
System:
- Target iOS 7
- iOS SDK 8.2
- Xcode 6.2
- Telerik UI for iOS Q1 2015
Thanks for your reply!
Thomas