Hello,
I would like to be able to change the rollover tooltip cursor color. It seems to be defaulted to the lineseries areastyle property color. I would like to be able to change it to a different color. I have not been able to find anything in the docs regarding how to do this.
Thank you
- C Bolton asked 3 years ago
- You must login to post comments
Hi, there.
You will have to override “onDrawOverlay(in rect: CGRect)” method in your SCIXySeriesTooltip subclass, something like this:
override func onDrawOverlay(in rect: CGRect) {
self.onDrawTooltipOverlay(in: rect, atCoordinate: self.seriesInfo.xyCoordinate, with: .green)
}
For more details, see the “Custom rollover tooltips” example
- Andriy P answered 3 years ago
- Thank you! That worked perfectly.
- You must login to post comments