Pre loader

I want to monitor the event that the chart stops sliding, what's the way

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

0
0

I want to monitor the event that the chart stops sliding, what’s the way

Version
'2.0.0.1884'
  • You must to post comments
0
0

Hi Huang,

You can use this code to monitor the end of a chart Axis VisibleRange change:

IAxis axis = new NumericAxis(getActivity());
axis.setVisibleRangeChangeListener(new VisibleRangeChangeListener() {
    @Override
    public void onVisibleRangeChanged(IAxisCore axis, IRange oldRange, IRange newRange, boolean isAnimating) {
        // TODO handle range changes here
    }
});

This method is discussed in the Android Chart Documentation – VisibleRange and AutoRange.

Best regards,
Andrew

  • You must to post comments
Showing 1 result
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