Description
Hi,
is it possible to have custom xib (view) instead of these lines and label only ? i want to create my own view for this purpose. i tried to search and i could not find anything related to piechart, but there are ballonmarkers and xyMarkerView present, but they dont refelect anything even if i add a custom view there.
let marker = BalloonMarker(color: UIColor(white: 180/255, alpha: 1), font: .systemFont(ofSize: 12), textColor: .white, insets: UIEdgeInsets(top: 8, left: 8, bottom: 20, right: 8)) marker.chartView = chartView marker.minimumSize = CGSize(width: 80, height: 40) chartView.marker = marker
this is how i tried. not sure if i did a mistake or what i am suppose to do. can someone please help me out ?
PS: i dont want to show a custom view on click, i want to replace these lines so that i can show my own custom view always.