// (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
{
///
/// Specifies the supported interpolation modes.
///
/// Preview
public enum InterpolationMode
{
///
/// Interpolation shall be applied to leaf nodes only in the tree.
///
LeafNodesOnly = 0,
///
/// Interpolation shall be applied to all nodes in the tree.
///
AllNodes = 1,
}
}