我是iphone开发和coreplot的新手。 我想根据一些数据绘制一个条形图,我已经完成了。 现在我想给剧情吧一些动画。这意味着图表中的条形图应该在不断增长或缩小的效果中缩短或缩短。
有人能帮助我吗?
提前致谢。
答案 0 :(得分:1)
请参阅以下帖子: How to access CALayer of individual bar in core-plot?
它谈到了你想要做的事情。
答案 1 :(得分:0)
我不知道您可能正在使用哪个类,但很可能它是CA Layer的子类。 检查此代码:
CABasicAnimation *rotation = [CABasicAnimation animationWithKeyPath:@"transform"];
CATransform3D transform = CATransform3DMakeRotation(DegreesToRadians(360), 0, 0, 1);
rotation.toValue = [NSValue valueWithCATransform3D:transform];
rotation.duration = 10.0f;
[pieChart addAnimation:rotation forKey:@"rotation"];
How to animate the pie charts developed using core-plot library?