You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
871 B
29 lines
871 B
// (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
|
|
{
|
|
/// <summary>
|
|
/// Specifies the supported animation sequences.
|
|
/// </summary>
|
|
/// <QualityBand>Preview</QualityBand>
|
|
public enum AnimationSequence
|
|
{
|
|
/// <summary>
|
|
/// Animates all of the data points simultaneously.
|
|
/// </summary>
|
|
Simultaneous = 0,
|
|
|
|
/// <summary>
|
|
/// Animates the data points from first to last.
|
|
/// </summary>
|
|
FirstToLast = 1,
|
|
|
|
/// <summary>
|
|
/// Animates the data points from last to first.
|
|
/// </summary>
|
|
LastToFirst = 2
|
|
}
|
|
}
|