// (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 { /// /// An object that implements this interface requires a series host. /// public interface IRequireSeriesHost { /// /// Gets or sets the series host. /// ISeriesHost SeriesHost { get; set; } } }