@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
2条答案
按热度按时间35g0bw711#
您需要在
LineChartView
属性上使用leftAxis.axisMinValue
,或者您正在绘制的任何类型的图表。如果您将其设置为0,那么图表中的“0.0”将正确地定位在最底部。您可以将其设置为其他值,图表也将从这些值开始。下面是一个简单的例子:
scyqe7ek2#
只需将最小值设置为0,如下所示:
如果在代码中没有找到
axisMinValue
使用代码如下: