2016-05-03 14:33:28 +03:00
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-md-4">
|
2016-05-03 14:58:57 +03:00
|
|
|
<ba-card title="Pie" baCardClass="medium-card">
|
2016-05-03 14:33:28 +03:00
|
|
|
<base-chart class="chart chart-pie"
|
2016-05-03 17:10:49 +03:00
|
|
|
[legend]="true" [colours]="colours" [options]="options" [data]="data.one" [chartType]="chartType('Pie')" [labels]="labels.one" (chartClick)="changeData($event)">
|
2016-05-03 14:33:28 +03:00
|
|
|
</base-chart>
|
2016-05-03 14:58:57 +03:00
|
|
|
</ba-card>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="col-md-4">
|
|
|
|
|
<ba-card title="Doughnut" baCardClass="medium-card">
|
|
|
|
|
<base-chart class="doughnut chart-doughnut"
|
2016-05-03 17:10:49 +03:00
|
|
|
[legend]="true" [colours]="colours" [options]="options" [data]="data.one" [chartType]="chartType('Doughnut')" [labels]="labels.one" (chartClick)="changeData($event)">
|
2016-05-03 14:58:57 +03:00
|
|
|
</base-chart>
|
|
|
|
|
</ba-card>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="col-md-4">
|
|
|
|
|
<ba-card title="Polar" baCardClass="medium-card">
|
|
|
|
|
<base-chart class="polar chart-polar"
|
2016-05-03 17:10:49 +03:00
|
|
|
[legend]="true" [colours]="colours" [options]="options" [data]="data.one" [chartType]="chartType('PolarArea')" [labels]="labels.one" (chartClick)="changeData($event)">
|
2016-05-03 14:58:57 +03:00
|
|
|
</base-chart>
|
2016-05-03 17:10:49 +03:00
|
|
|
</ba-card>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="row ">
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
|
<ba-card title="Animated Radar" baCardClass="with-scroll col-eq-height">
|
|
|
|
|
<base-chart class="waveLine chart-waveLine"
|
|
|
|
|
[legend]="false" [colours]="colours" [options]="options" [data]="data.two" [chartType]="chartType('Radar')" [labels]="labels.two" (chartClick)="changeData($event)">
|
|
|
|
|
</base-chart>
|
|
|
|
|
</ba-card>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
|
<ba-card title="Animated Bars" baCardClass="with-scroll col-eq-height">
|
|
|
|
|
<base-chart class="waveBars chart-waveBars"
|
|
|
|
|
[legend]="false" [colours]="colours" [options]="options" [data]="data.two" [chartType]="chartType('Bar')" [labels]="labels.two" (chartClick)="changeData($event)">
|
|
|
|
|
</base-chart>
|
|
|
|
|
</ba-card>
|
2016-05-03 14:33:28 +03:00
|
|
|
</div>
|
|
|
|
|
</div>
|