iOS 图表中的饼图是否可以从与上止点不同的起始角度绘制?

Can a PieChart from iOS-charts be drawn from a different starting angle than top dead center?

iOS-charts 库中的饼图是从上止点(科学 90 度)开始绘制的,顺时针绘制饼图的每个下一部分。是否可以从不同的角度开始?

用户还可以在屏幕上旋转图表,如何禁用?

1)

查看 pieCharView 的“rotationAngle 属性。属性 的文档说:

/// current rotation angle of the pie chart
///
/// **default**: 270 --> top (NORTH)
/// - returns: will always return a normalized value, which will be between 0.0 < 360.0

因此请尝试通过以下方式以编程方式重置角度:

    self.pieChartView.rotationAngle = 180.0

2)

图表上有一个 rotationEnabled 属性,您可以将其设置为 false 以禁用旋转。