Class BadgeCardComponent
Represents a badge component that displays text with a colored background that can be used in OverviewCard.
public abstract class BadgeCardComponent : IOverviewCardComponent
- Inheritance
-
objectBadgeCardComponent
- Implements
- Extension Methods
Constructors
BadgeCardComponent()
protected BadgeCardComponent()
Properties
BackgroundColor
Background color of the badge.
public Color BackgroundColor { get; set; }
Property Value
ComponentName
Gets or sets the name of the client component.
public abstract string ComponentName { get; }
Property Value
- string
Label
Text displayed on the badge.
public string Label { get; set; }
Property Value
- string
TextColor
Text color of the badge.
public Color TextColor { get; set; }
Property Value
Tooltip
Tooltip for the badge.
public string Tooltip { get; set; }
Property Value
- string