// (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.
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Windows;
using System.Windows.Controls;
namespace System.Windows.Controls.DataVisualization.Charting
{
///
/// Defines properties, methods and events for classes that host a
/// collection of Series objects.
///
/// Preview
public interface ISeriesHost : IRequireSeriesHost, IResourceDictionaryDispenser
{
///
/// Gets the collection of axes the series host has available.
///
ObservableCollection Axes { get; }
///
/// Gets the collection of series the series host has available.
///
ObservableCollection Series { get; }
///
/// Gets the foreground elements.
///
ObservableCollection ForegroundElements { get; }
///
/// Gets the background elements.
///
ObservableCollection BackgroundElements { get; }
}
}