SplineControlAnimation QML Type

An animation type which signifies the animation for spline control points. More...

Import Statement: import QtGraphs

Detailed Description

SplineControlAnimation is an animation type derived from QVariantAnimation which defines how spline control points are animated. It can make use of QVariantAnimation functionality and properties for its animations, such as duration and easing. These animations are housed inside a QParallelAnimationGroup and hence will run in parallel. This animation will not affect the main points of the SplineSeries, but only the two control handles on either side of the point. Each of the control points are linearly interpolated in succession.

This example shows how to use both a SplineControlPointAnimation and a GraphPointAnimation to define animations for both the main series of points and the control points of a SplineSeries:

import QtGraphs

GraphsView {
    SplineSeries {
        GraphTransition {
            GraphPointAnimation { duration: 1000; easingCurve.type: Easing.OutCubic  }
            SplineControlAnimation { duration: 1000; easingCurve.type: Easing.OutCubic }
        }
    }
}

See also GraphTransition and GraphPointAnimation.

© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.