Class HeatMapItemMeasure
Provides additional information about a HeatMapItem that you can use within your DataTemplates. See HeatMapItem.ItemMeasure property class reference for more info on how to use this type.
Inheritance
System.Object
HeatMapItemMeasure
Implements
System.IDisposable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Chart
Assembly: Syncfusion.Chart.Wpf.dll
Syntax
public class HeatMapItemMeasure : IDisposable
Properties
AreaByWeight
Gets or sets the calculated area occupied by the item based on it's Weight and the size of the container.
Declaration
public double AreaByWeight { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The Area by weight |
ComputedLocation
Gets or sets the Computed Location for the item.
Declaration
public Point ComputedLocation { get; set; }
Property Value
Type | Description |
---|---|
System.Windows.Point | The computed location point |
ComputedSize
Gets or sets the Computed size for the item.
Declaration
public Size ComputedSize { get; set; }
Property Value
Type | Description |
---|---|
System.Windows.Size | The computed size |
Item
Gets the underlying HeatMapItem instance.
Declaration
public HeatMapItem Item { get; }
Property Value
Type | Description |
---|---|
HeatMapItem | The item value |
Methods
CompareByWeightDescendingOrder(HeatMapItemMeasure, HeatMapItemMeasure)
Used by the implementation to compare the weights of 2 items.
Declaration
public static int CompareByWeightDescendingOrder(HeatMapItemMeasure x, HeatMapItemMeasure y)
Parameters
Type | Name | Description |
---|---|---|
HeatMapItemMeasure | x | The x value |
HeatMapItemMeasure | y | The y value |
Returns
Type | Description |
---|---|
System.Int32 | The int order |
Dispose()
Clean up any resources being used.
Declaration
public void Dispose()
Implements
System.IDisposable