A Pen by Alyssa Nicoll on CodePen.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<kendo-dropdownlist | |
class="dropdown-list-selection interval" | |
[style.width.px]="135" | |
[style.marginRight.px]="8" | |
[data]="intervals" | |
[iconClass]="'k-i-arrow-chevron-down'" | |
[textField]="'name'" | |
[valueField]="'interval'" | |
[(value)]="selectedInterval" | |
[itemDisabled]="disableIncompatibleIntervals"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<kendo-daterange> | |
<kendo-dateinput | |
kendoDateRangeStartInput | |
[autoCorrectOn]="'change'" | |
[min]="calendarMin" | |
[max]="calendarMax" | |
[(ngModel)]="range.start" | |
(valueChange)="handleRangeChange($event, range.end)"> | |
</kendo-dateinput> | |
<kendo-dateinput |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<kendo-stockchart | |
class="stock-chart" | |
[transitions]="true" | |
[renderAs]="'svg'" | |
(navigatorFilter)="configureVolumeValueAxisHeight()" | |
> | |
<kendo-chart-category-axis> | |
<kendo-chart-category-axis-item | |
[crosshair]="{ visible: true }" | |
[maxDivisions]="20" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<div class="row py-4 d-flex justify-content-between align-items-center"> | |
<div class="col col-4 d-flex daterange-input-wrap"> | |
<kendo-daterange> | |
<kendo-dateinput | |
kendoDateRangeStartInput | |
[autoCorrectOn]="'change'" | |
[min]="calendarMin" | |
[max]="calendarMax" | |
[(ngModel)]="range.start" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<kendo-grid-column field="day_change" title="Change" media="(min-width: 768px)"> | |
<ng-template kendoGridCellTemplate let-dataItem> | |
<span [ngClass]="{ 'grid-cell-positive' : dataItem.day_change > 0, 'grid-cell-negative' : dataItem.day_change < 0 }"> | |
{{ dataItem.day_change > 0 ? ('+' + dataItem.day_change) : dataItem.day_change }} | |
</span> | |
</ng-template> | |
</kendo-grid-column> | |
<kendo-grid-column field="change_pct" title="%Change" media="(min-width: 768px)"> | |
<ng-template kendoGridCellTemplate let-dataItem> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MouseEvent { | |
isTrusted: true, | |
screenX: 431, | |
screenY: 443, | |
clientX: 431, | |
clientY: 309, | |
ctrlKey: false, | |
shiftKey: false, | |
altKey: false, | |
metaKey: false, |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder