Skip to content

Instantly share code, notes, and snippets.

View alyssamichelle's full-sized avatar
🖤
It's going to be OK

Alyssa Michelle Nicoll alyssamichelle

🖤
It's going to be OK
View GitHub Profile
<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"
<kendo-daterange>
<kendo-dateinput
kendoDateRangeStartInput
[autoCorrectOn]="'change'"
[min]="calendarMin"
[max]="calendarMax"
[(ngModel)]="range.start"
(valueChange)="handleRangeChange($event, range.end)">
</kendo-dateinput>
<kendo-dateinput
<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">
@alyssamichelle
alyssamichelle / navigation.component.html
Created May 27, 2020 18:41
The navigation component used inside of the Kendo UI for Angular Financial Portfolio Demo application — found here:https://github.com/telerik/kendo-angular/tree/master/examples-standalone/finance-portfolio
<kendo-buttongroup [selection]="'single'">
<button kendoButton routerLink="/stocks" routerLinkActive="k-state-active">
Result List
</button>
<button kendoButton routerLink="/heatmap" routerLinkActive="k-state-active">
Heatmap View
</button>
<button kendoButton routerLink="/real-time" routerLinkActive="k-state-active">
Data Virtualization
</button>