// (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
{
///
/// Control that displays values as a stacked column chart visualization.
///
/// Preview
public class StackedColumnSeries : StackedBarColumnSeries
{
///
/// Initializes a new instance of the StackedColumnSeries class.
///
public StackedColumnSeries()
{
DependentAxisOrientation = AxisOrientation.Y;
IndependentAxisOrientation = AxisOrientation.X;
}
///
/// Creates a DataPoint for the series.
///
/// Series-appropriate DataPoint instance.
protected override DataPoint CreateDataPoint()
{
return new ColumnDataPoint();
}
}
}