Hi,
You should be able to achieve this behaviour by allowing the chart to render normally the first time, but then use the following SChartDelegate method:
- (void)sChartRenderFinished:(ShinobiChart *)chart {
chart.autoCalculateAxisRanges = NO;
}
This will prevent the chart from auto-updating your axes. You can then use the below SChartAxis method to animate to your desired range.
- (BOOL)setRangeWithMinimum:(id)minimum andMaximum:(id)maximum withAnimation:(BOOL)animation
I hope the above is of some help - please get back to us if you need further assistance!
Sam