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.
|
IsPrepared
Gets or sets value which indicates whether colorizer have been prepared already.
Declaration
bool IsPrepared { get; set; }
Property Value
System.
|
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.
|
UsageMode
Gets colorizer usage mode.
Declaration
ColorizerUsageMode UsageMode { get; }
Property Value
Methods
Colorize(IEnumerable<Object>)
Colorize elements from the list.
Declaration
void Colorize(IEnumerable<object> shapes)
Parameters
System. The shape list. |
Prepare(IEnumerable<Object>)
Prepares the colorizer using the shape list.
Declaration
void Prepare(IEnumerable<object> shapes)
Parameters
System. The shape list. |
SetColor(IExtendedData)
Sets color to item by extended data.
Declaration
void SetColor(IExtendedData item)
Parameters
IExtended Item of IExtendedData type. |
Events
PrepareCompleted
The Prepare completed event handler.
Declaration
event EventHandler<ShapeColorizerEventArgs> PrepareCompleted
Event Type
System.
|
UpdateLegend
The update legend event handler. Occurs when the colorizer changed and it should update the legend.
Declaration
event EventHandler UpdateLegend
Event Type
System.
|