// (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;
using System.Collections.Generic;
namespace System.Windows.Controls.DataVisualization.Charting
{
///
/// Provides information to a RangeConsumer.
///
public interface IRangeProvider
{
///
/// Returns the range of values.
///
/// The range consumer requesting the data
/// range.
/// A data range.
Range GetRange(IRangeConsumer rangeConsumer);
}
}