igniteui-angular-sovn
Version:
Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps
91 lines (87 loc) • 3 kB
HTML
<igx-ticks
*ngIf="showTicks && showTopTicks"
ticksOrientation="top"
[]="primaryTicks"
[]="secondaryTicks"
[]="primaryTickLabels"
[]="secondaryTickLabels"
[]="tickLabelsOrientation"
[]="labelsViewEnabled"
[]="labels | spreadTickLabels:secondaryTicks"
[]="tickLabelTemplateRef"
[]="minValue"
[]="maxValue">
</igx-ticks>
<div class="igx-slider__track">
<div class="igx-slider__track-inactive"></div>
<div
<div class="igx-slider__track-steps">
<svg width="100%" height="100%">
<line
</svg>
</div>
</div>
<div class="igx-slider__thumbs">
<igx-thumb-label
*ngIf="isRange"
type="from"
[]="lowerLabel"
[]="thumbFromTemplateRef"
[]="continuous"
[]="context"
[]="deactivateThumbLabel"
[]="thumbFrom"></igx-thumb-label>
<igx-thumb
*ngIf="isRange"
type="from"
[]="lowerLabel"
[]="disabled"
[]="continuous"
[]="onPan"
[]="stepDistance"
[]="step"
[]="thumbFromTemplateRef"
[]="context"
(thumbChange)="onThumbChange()"
(hoverChange)="onHoverChange($event)"
[]="deactivateThumbLabel"
[]="thumbLabelVisibilityDuration"></igx-thumb>
<igx-thumb-label
[]="upperLabel"
type="to"
[]="thumbToTemplateRef"
[]="continuous"
[]="context"
[]="deactivateThumbLabel"
[]="thumbTo"></igx-thumb-label>
<igx-thumb
type="to"
[]="upperLabel"
[]="disabled"
[]="continuous"
[]="onPan"
[]="stepDistance"
[]="step"
[]="thumbToTemplateRef"
[]="context"
(thumbChange)="onThumbChange()"
(hoverChange)="onHoverChange($event)"
[]="deactivateThumbLabel"
[]="thumbLabelVisibilityDuration"></igx-thumb>
</div>
<igx-ticks
*ngIf="showTicks && showBottomTicks"
ticksOrientation="bottom"
[]="primaryTicks"
[]="secondaryTicks"
[]="primaryTickLabels"
[]="secondaryTickLabels"
[]="tickLabelsOrientation"
[]="labelsViewEnabled"
[]="labels | spreadTickLabels:secondaryTicks"
[]="tickLabelTemplateRef"
[]="minValue"
[]="maxValue">
</igx-ticks>