Class TileBadgeProperties
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Syncfusion.JavaScript
Assembly: Syncfusion.EJ.dll
Syntax
public class TileBadgeProperties : EJTagHelper
Constructors
TileBadgeProperties()
Declaration
public TileBadgeProperties()
Properties
Enabled
Specifies whether to enable badge or not.
Declaration
[JsonProperty("enabled")]
public bool Enabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
MaxValue
Specifies maximum value for tile badge.
Declaration
[JsonProperty("maxValue")]
public double MaxValue { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The maximum badge value |
MinValue
Specifies minimum value for tile badge.
Declaration
[JsonProperty("minValue")]
public double MinValue { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The minimum badge value |
Position
Sets badge position for tile.
Declaration
[JsonConverter(typeof(StringEnumConverter))]
[JsonProperty("position")]
public TileBadgePosition Position { get; set; }
Property Value
Type | Description |
---|---|
TileBadgePosition | The badge position |
Text
Specifies text instead of number for tile badge.
Declaration
[JsonProperty("text")]
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | The badge text |
Value
Sets value for tile badge.
Declaration
[JsonProperty("value")]
public double Value { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The badge value |