// (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 { /// /// Provides information to a category axis. /// public interface IDataProvider { /// /// Retrieves the data to be plotted on the axis. /// /// The axis to retrieve the data for. /// The data to plot on the axis. IEnumerable GetData(IDataConsumer axis); } }