iOS-图表 - yAxis 标签未完全从底部开始
iOS-Charts - yAxis labels not start exactly at bottom
我在我的 project.I 中使用图表 swift 库,在折线图中使用两个数据集,但 Yaxis 的标签并不完全从 bottom.I 开始,希望 yAxis 上的第一个标签正好在图表的左下角。我尝试设置 yAxis 的最小值,但没有帮助。
以下是示例图片。
您需要在 LineChartView
属性 上使用 leftAxis.axisMinValue
或您正在绘制的任何类型的图表。如果将其设置为 0,则图表中的“0.0”将正确定位在最底部。您可以将其设置为其他值,图表也将从这些值开始。
这是一个简单的实际例子:
@IBOutlet weak var yourChartViewController: LineChartView! // View controller for the chart in a storyboard.
// Set up your data for the chart...
// Configuring the chart's view
yourChartViewController.leftAxis.axisMinValue = 0 // This is what you need
我在我的 project.I 中使用图表 swift 库,在折线图中使用两个数据集,但 Yaxis 的标签并不完全从 bottom.I 开始,希望 yAxis 上的第一个标签正好在图表的左下角。我尝试设置 yAxis 的最小值,但没有帮助。
以下是示例图片。
您需要在 LineChartView
属性 上使用 leftAxis.axisMinValue
或您正在绘制的任何类型的图表。如果将其设置为 0,则图表中的“0.0”将正确定位在最底部。您可以将其设置为其他值,图表也将从这些值开始。
这是一个简单的实际例子:
@IBOutlet weak var yourChartViewController: LineChartView! // View controller for the chart in a storyboard.
// Set up your data for the chart...
// Configuring the chart's view
yourChartViewController.leftAxis.axisMinValue = 0 // This is what you need