Skip to content

Instantly share code, notes, and snippets.

View dtaalbers's full-sized avatar
💻
Doing the computer stuff things..

Tom Aalbers dtaalbers

💻
Doing the computer stuff things..
View GitHub Profile
@dtaalbers
dtaalbers / app.html
Last active February 22, 2017 10:27 — forked from gist-master/app.html
ComboBox: cascading combobox
<template>
<require from="aurelia-kendoui-bridge/combobox/combobox"></require>
<div id="example">
<div class="demo-section k-content">
<h4>Categories:</h4>
<ak-combobox disabled.bind="disabled" k-option-label="Select category..."
k-data-text-field="CategoryName"
k-data-value-field="CategoryID"
k-widget.bind="categories"
@dtaalbers
dtaalbers / app.html
Last active November 29, 2016 18:07 — forked from gist-master/app.html
Bar chart: Binding to remote data
<template>
<require from="aurelia-kendoui-bridge/chart/chart"></require>
<ak-chart k-title.bind="title" k-data-source.bind="datasource" k-legend.bind="legend" k-series-defaults.bind="seriesDefaults"
k-series.bind="series" k-tooltip.bind="tooltip">
</ak-chart>
</template>
@dtaalbers
dtaalbers / app.html
Last active November 23, 2016 11:06 — forked from gist-master/app.html
Line charts: binding to grouped data
<template>
<require from="aurelia-kendoui-bridge/chart/chart"></require>
<ak-chart k-widget.bind="widget" k-data-source.bind="datasource" k-legend.bind="{position: 'bottom'}" k-series-defaults.bind="seriesDefaults"
k-series.bind="series" k-value-axis.bind="valueAxis" k-category-axis.bind="categoryAxis" k-tooltip.bind="tooltip"
view-model.ref="chart">
</ak-chart>
</template>
@dtaalbers
dtaalbers / app.html
Created November 23, 2016 10:44 — forked from gist-master/app.html
linechart
<template>
<require from="aurelia-kendoui-bridge/chart/chart"></require>
<ak-chart k-title.bind="{text: 'Gross Domestic product growth \n /GDP annual %/'}"
k-legend.bind="{position: 'bottom'}"
k-series-defaults.bind="seriesDefaults"
k-series.bind="series"
k-value-axis.bind="valueAxis"
k-category-axis.bind="categoryAxis"
k-tooltip.bind="tooltip">
</ak-chart>