Class
PieTwoLabelColumnsStrategy.DescendingComparer<T>

A decenting comparer.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.ChartView.dll

Type Parameters:

T

Syntax:

cs-api-definition
public class PieTwoLabelColumnsStrategy.DescendingComparer<T> : IComparer<T> where T : IComparable<T>

Inheritance: objectPieTwoLabelColumnsStrategy.DescendingComparer<T>

Implements: IComparer<T>

Constructors

DescendingComparer()

Declaration

cs-api-definition
public DescendingComparer()

Methods

Compare(T, T)

Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other.

Declaration

cs-api-definition
public int Compare(T x, T y)

Parameters

x

T

The first object to compare.

y

T

The second object to compare.

Returns

int

Value Condition Less than zero x is less than y. Zero x equals y. Greater than zero x is greater than y.

Implements IComparer<T>.Compare(T, T)