When I tap on the chart it shows a value and highlight indicator. How can I remove them after the tap finishes?
func SetChart(_ dataPoints: [Date], values: [Double], lineChartView: LineChartView, description: String) {
lineChartDataSet.highlightEnabled = true
lineChartView.highlightPerDragEnabled = true
lineChartDataSet.drawVerticalHighlightIndicatorEnabled = true
}
func chartValueSelected(_ chartView: ChartViewBase, entry: ChartDataEntry, highlight: Highlight) {
print("\(entry.y))
}