LegendItem
Class
Data representation of the legend item displayed in the RadLegend.
Definition
Namespace:Telerik.Windows.Controls.Legend
Assembly:Telerik.Windows.Controls.dll
Syntax:
C#
public class LegendItem : INotifyPropertyChanged
Inheritance: objectLegendItem
Implements:
Constructors
C#
public LegendItem()
Properties
Gets and sets a value indicating whether the item is hovered.
C#
public bool IsHovered { get; set; }
MarkerFill
Brush
Gets or sets the fill of the marker.
C#
public Brush MarkerFill { get; set; }
MarkerGeometry
Geometry
Gets or sets the Geometry of the marker.
C#
public Geometry MarkerGeometry { get; set; }
MarkerStroke
Brush
Gets or sets the stroke of the marker.
C#
public Brush MarkerStroke { get; set; }
Gets or sets the object which this LegendItem represents.
C#
public object Presenter { get; set; }
Gets the visual state. This property is set internally in accordance to the IsHovered property.
C#
public string VisualState { get; }
Events
Occurs when a property value changes.
C#
public event PropertyChangedEventHandler PropertyChanged
Implements: