// (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; namespace System.Windows.Controls.DataVisualization.Charting { /// /// An object that consumes data. /// public interface IDataConsumer { /// /// Supplies the consumer with data. /// /// The data provider. /// The data used by the consumer. void DataChanged(IDataProvider dataProvider, IEnumerable data); } }