// (c) Copyright Microsoft Corporation. // This source is subject to the Microsoft Public License (Ms-PL). // Please see http://go.microsoft.com/fwlink/?LinkID=131993 for details. // All other rights reserved. namespace System.Windows.Controls.DataVisualization.Charting { /// /// Specifies the supported animation sequences. /// /// Preview public enum AnimationSequence { /// /// Animates all of the data points simultaneously. /// Simultaneous = 0, /// /// Animates the data points from first to last. /// FirstToLast = 1, /// /// Animates the data points from last to first. /// LastToFirst = 2 } }