水平条形图Swift

时间:2018-08-06 12:41:22

标签: ios swift xcode bar-chart ios-charts

我想要这样:

enter image description here

但是我能做的是,如何摆脱红色小标签: enter image description here

图表的核心代码:

var barchart = [BarChartDataEntry]()
// some values
barchart.append(value1)
barchart.append(value2)
barchart.append(value3)

let barData = BarChartDataSet(values: barchart, label: "")
barData.colors = [NSUIColor.red]
let data = BarChartData(dataSet: barData)
data.barWidth = 0.35
cell.barChart.data = data
cell.barChart.scaleYEnabled = false
cell.barChart.chartDescription?.text = ""
cell.barChart.scaleXEnabled = false
cell.barChart.pinchZoomEnabled = false
cell.barChart.doubleTapToZoomEnabled = false
cell.barChart.rightAxis.enabled = false
cell.barChart.xAxis.drawGridLinesEnabled = false
cell.barChart.leftAxis.drawGridLinesEnabled = false
cell.barChart.leftAxis.drawAxisLineEnabled = false
cell.barChart.xAxis.drawAxisLineEnabled = false
cell.barChart.xAxis.drawLabelsEnabled = false
cell.barChart.leftAxis.drawLabelsEnabled = false
cell.barChart.animate(yAxisDuration: 1.5, easingOption: .easeInOutQuart)
return cell

我想设置最大值,并使标签如上图所示四舍五入。我正在使用https://github.com/danielgindi/Charts

3 个答案:

答案 0 :(得分:1)

您可以使用UIProgressView

来实现类似的UI

首先,可以将Label设置在顶部,然后设置UIProgressView并重复相同的操作。对于其他两个进度。

您可以添加适当的约束并实现它。

请参考此Sample Demo以实现相同的目的。

希望有帮助。

答案 1 :(得分:1)

只需在要设置chartView的位置添加此行

cell.barChart.legend.enabled = false

对我有用。

答案 2 :(得分:0)

在情节提要中使用 UIProgressView 组件并创建出口

@IBOutlet var progressViewWalk: UIProgressView!

您可以通过以下方式设置所需的进度:-

progressViewWalk.progress = Float(YOURValue)/100

Attribute Inspector 中设置所需的跟踪色颜色。