19 lines
826 B
Plaintext
19 lines
826 B
Plaintext
@page "/Test"
|
|
@attribute [AllowAnonymous]
|
|
|
|
@using GPW.CORE.WRKLOG.Components
|
|
|
|
<PageTitle>Test - Fasi</PageTitle>
|
|
|
|
<div class="row">
|
|
<div class="col-4">
|
|
<ChartTS Id="TempRil" DataTS="@getTsData()" lineColor="rgb(7, 173, 236)" backColor="rgba(107, 223, 255, 0.3)"></ChartTS>
|
|
</div>
|
|
<div class="col-4">
|
|
<ChartHist Id="FreqTemp" Data="@(new[] { "5", "8", "10", "6", "4", "3" })" Labels="@(new[] { "35.8", "35.9", "36.0", "36.1", "36.2", "36.3" })" lineColor="rgb(7, 173, 236)" backColor="rgba(107, 223, 255, 0.5)"></ChartHist>
|
|
</div>
|
|
<div class="col-4">
|
|
<Chart Id="Bar" Type="@Chart.ChartType.Bar" Data="@(new[] { "10", "9", "12", "8", "14" })" BackgroundColor="@(new[] { "yellow","red", "green", "blue"})" Labels="@(new[] { "S01","S02","S03","S04"})"></Chart>
|
|
</div>
|
|
</div>
|