Hello
I need to create a linechart with specific design.


I was able to fix the design for the axis, etc but I'm having trouble on how to achieve the custom highlighter/marker.
Requirements
Any help is welcome!
Kind regards
refer
public protocol IMarker: NSObjectProtocol
Write your own marker. You can take a look at how BalloonMarker is implemented.
For the dashed line, one option is override drawHighlightLines() only enable the vertical highlight line and make it dashed above your line. You may need to add more parameters to know the marker position, you should feel comfortable to change the source code if needed
Most helpful comment
refer
Write your own marker. You can take a look at how BalloonMarker is implemented.
For the dashed line, one option is override
drawHighlightLines()only enable the vertical highlight line and make it dashed above your line. You may need to add more parameters to know the marker position, you should feel comfortable to change the source code if needed