如果 bar 值为 0.0,如何隐藏 markerView。在条形图中使用 iOS 个图表
How to hide the markerView if bar value is 0.0. in bar graph using iOS charts
我正在使用 iOS 图表添加标记。我只想在值不为零时打开标记。我们可以使用 iOS 图表库来做到这一点吗?
首先设置barChartView的delegate,然后在chartValueSelected函数中写入这段代码
func chartValueSelected(_ chartView: ChartViewBase, entry: ChartDataEntry, highlight: Highlight){
if entry.y == 0.0{
barChartView.highlightValue(nil, callDelegate: false)
}
}
任何你需要隐藏标记的地方只需添加这段代码
barChartView.highlightValue(nil, callDelegate: false)
我正在使用 iOS 图表添加标记。我只想在值不为零时打开标记。我们可以使用 iOS 图表库来做到这一点吗?
首先设置barChartView的delegate,然后在chartValueSelected函数中写入这段代码
func chartValueSelected(_ chartView: ChartViewBase, entry: ChartDataEntry, highlight: Highlight){
if entry.y == 0.0{
barChartView.highlightValue(nil, callDelegate: false)
}
}
任何你需要隐藏标记的地方只需添加这段代码
barChartView.highlightValue(nil, callDelegate: false)