20 lines
523 B
Plaintext
20 lines
523 B
Plaintext
@page "/TestMultiLine"
|
|
|
|
@if (currDS == null)
|
|
{
|
|
<LoadingData></LoadingData>
|
|
}
|
|
else
|
|
{
|
|
<h3>TestMultiLine</h3>
|
|
<div class="row" style="height: 500px;">
|
|
<div class="col-6">
|
|
<ChartHist Id="01" Data="@histData(1)" Labels="@histLabel(1)" LineColor="rgb(7, 173, 236)" BackColor="rgba(107, 223, 255, 0.5)" ChartLabel="Ore 01"></ChartHist>
|
|
</div>
|
|
<div class="col-6">
|
|
<ChartMultiLine DataSets="currDS" ChartLabels="ChLabels"></ChartMultiLine>
|
|
</div>
|
|
</div>
|
|
}
|
|
|