Pre loader

SCIAxisMarkerAnnotation Customisation and Panning

Welcome to the SciChart Forums!

  • Please read our Question Asking Guidelines for how to format a good question
  • Some reputation is required to post answers. Get up-voted to avoid the spam filter!
  • We welcome community answers and upvotes. Every Q&A improves SciChart for everyone

WPF Forums | JavaScript Forums | Android Forums | iOS Forums

Answered
0
0

Hi,

I have an issue regarding to SCIAxisMarkerAnnotation that I could not find. Can I customise the look of it or should I implement my own axis marker? And can I add another pan gesture to annotation pin so the user can change annotation location on that axis?

Thanks,
Irmak

Version
1.2.0.8
  • You must to post comments
Good Answer
0
0

Good day

Regarding customization:
It depends on what customization you require.
Take a look at SCIAxisMarkerAnnotationStyle (it can be accessed as property on SCIAxisMarkerAnnotation)
https://www.scichart.com/documentation/ios/v1.x/api/interface_s_c_i_axis_marker_annotation_style.html
There are most of customization options (fonts, colors and so on)
If you need to change Label formatting there are two options:
1) Set SCIAxisCore cursor text formatting for axis to which annotation is bound. But it will influence all annotations and modifiers that use axis text format https://www.scichart.com/documentation/ios/v1.x/api/interface_s_c_i_axis_core.html#af6a3b1c6c46defa5091d6ba6184aa6af
2) You can subclass and override method “formatValue:” in SCIAxisMarkerAnnotation. It takes value as parameter and returns string that will be displayed in annotation
https://www.scichart.com/documentation/ios/v1.x/api/interface_s_c_i_axis_marker_annotation.html#a3e15bcf72c36a30d6a654810e69f7080

Regarding pan gesture
Gesture handlers are not implemented for axis marker annotation at the moment. We will consider adding it, but you can implement it with subclassing. You will need to override “onPanGesture:At:”. It can be a little complicated, so if you decide to override method I will provide further information how to do it correctly.

Best regards
Andrii
SciChart iOS Developer

  • You must to post comments
0
0

Hi everyone,
(Swift 4 language)
I am trying to create a similar feature but there isn’t any straightforward way to do it.
I want to make the custom SCIAxisMarkerAnnotation tappable but I cannot
I have already overide the default class and added these functions but the code doesn’t get inside these:

override func onPanGesture(_ gesture: UIPanGestureRecognizer!, at view: UIView!) -> Bool {
return true
}

override func onTapGesture(_ gesture: UITapGestureRecognizer!, at view: UIView!) -> Bool {
return true
}

Can you please help me detect a tap and maybe a drag on SCIAxisMarkerAnnotation because I need it ASAP.
Thanks a lot for your super useful framework and your support.
Best regards

  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.

Try SciChart Today

Start a trial and discover why we are the choice
of demanding developers worldwide

Start TrialCase Studies