Interface IMapShapeColorizer
Represents the IMapShapeColorizer interface.
Namespace: Telerik.Windows.Controls.Map
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public interface IMapShapeColorizer
Properties
ExtendedPropertyName
Gets or sets extended property name.
Declaration
string ExtendedPropertyName { get; set; }
Property Value
System.String
|
IsPrepared
Gets or sets value which indicates whether colorizer have been prepared already.
Declaration
bool IsPrepared { get; set; }
Property Value
System.Boolean
|
ResetOnItemsChanged
Gets or sets value which indicates whether colorizer should be re-prepared when items collection of the information layer is changed.
Declaration
bool ResetOnItemsChanged { get; set; }
Property Value
System.Boolean
|
UsageMode
Gets colorizer usage mode.
Declaration
ColorizerUsageMode UsageMode { get; }
Property Value
ColorizerUsageMode
|
Methods
Colorize(IEnumerable<Object>)
Colorize elements from the list.
Declaration
void Colorize(IEnumerable<object> shapes)
Parameters
System.Collections.Generic.IEnumerable<System.Object>
shapes
The shape list. |
Prepare(IEnumerable<Object>)
Prepares the colorizer using the shape list.
Declaration
void Prepare(IEnumerable<object> shapes)
Parameters
System.Collections.Generic.IEnumerable<System.Object>
shapes
The shape list. |
SetColor(IExtendedData)
Sets color to item by extended data.
Declaration
void SetColor(IExtendedData item)
Parameters
IExtendedData
item
Item of IExtendedData type. |
Events
PrepareCompleted
The Prepare completed event handler.
Declaration
event EventHandler<ShapeColorizerEventArgs> PrepareCompleted
Event Type
System.EventHandler<ShapeColorizerEventArgs>
|
UpdateLegend
The update legend event handler. Occurs when the colorizer changed and it should update the legend.
Declaration
event EventHandler UpdateLegend
Event Type
System.EventHandler
|