Class SliderTicksData
Inheritance
System.Object
SliderTicksData
Assembly: Syncfusion.EJ2.dll
public class SliderTicksData : EJTagHelper
Constructors
Declaration
Properties
ContentTemplate
To get or set value for ContentTemplate.
Declaration
public MvcTemplate<object> ContentTemplate { get; set; }
Property Value
It is used to customize the Slider scale value to the desired format using Internationalization or events(custom formatting).
{% codeBlock src='slider/format/index.md' %}{% endcodeBlock %}
Declaration
public string Format { get; set; }
Property Value
Type |
Description |
System.String |
|
Declaration
protected override bool IsComplex { get; }
Property Value
Type |
Description |
System.Boolean |
|
Overrides
It is used to denote the distance between two major (large) ticks from the scale of the Slider.
{% codeBlock src='slider/largestep/index.md' %}{% endcodeBlock %}
Declaration
public double LargeStep { get; set; }
Property Value
Type |
Description |
System.Double |
|
Declaration
protected override string ParentPropertyName { get; }
Property Value
Type |
Description |
System.String |
|
Overrides
It is used to denote the position of the ticks in the Slider. The available options are:
Declaration
public Placement Placement { get; set; }
Property Value
We can show or hide the small ticks in the Slider, which will be appeared in between the largeTicks.
Declaration
public bool ShowSmallTicks { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
It is used to denote the distance between two minor (small) ticks from the scale of the Slider.
{% codeBlock src='slider/smallstep/index.md' %}{% endcodeBlock %}
Declaration
public double SmallStep { get; set; }
Property Value
Type |
Description |
System.Double |
|