You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
791 B
24 lines
791 B
// (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
|
|
{
|
|
/// <summary>
|
|
/// Provides information to a RangeConsumer.
|
|
/// </summary>
|
|
public interface IRangeProvider
|
|
{
|
|
/// <summary>
|
|
/// Returns the range of values.
|
|
/// </summary>
|
|
/// <param name="rangeConsumer">The range consumer requesting the data
|
|
/// range.</param>
|
|
/// <returns>A data range.</returns>
|
|
Range<IComparable> GetRange(IRangeConsumer rangeConsumer);
|
|
}
|
|
}
|
|
|