LimitDataModel

12 Sep 20252 minutes to read

Interface for a class LimitData

Properties

enabled boolean

It is used to enable the limit in the slider.

endHandleFixed boolean

It is used to lock the second handle.

 <ejs-slider [value]="minValue" [min]="min" [max]="max" [type]="minType"
    [limits]="minRangeLimits"></ejs-slider>
import { Component } from "@angular/core";

@Component({
    selector: "my-app",
    templateUrl: "app/template.html",
    styleUrls:["index.css"],
})
export class AppComponent {
    public minType: SliderType = "MinRange";
    public min: number = 0;
    public max: number = 100;
    public minRangeLimits: LimitDataModel = { enabled: true, minStart: 10, minEnd: 40, endHandleFixed: true };
}

maxEnd number

It is used to set the maximum end limit value.

maxStart number

It is used to set the maximum start limit value.

minEnd number

It is used to set the minimum end limit value.

minStart number

It is used to set the minimum start limit value.

startHandleFixed boolean

It is used to lock the first handle.

 <ejs-slider [value]="minValue" [min]="min" [max]="max" [type]="minType" [limits]="minRangeLimits"></ejs-slider>
import { Component } from "@angular/core";

@Component({
    selector: "my-app",
    templateUrl: "app/template.html",
    styleUrls:["index.css"],
})
export class AppComponent {
    public minType: SliderType = "MinRange";
    public min: number = 0;
    public max: number = 100;
    public minRangeLimits: LimitDataModel = { enabled: true, minStart: 10, minEnd: 40, startHandleFixed: true };
}