Hi
I'm trying to present a sparkline on a card but it doesn't want to be contained. The chart seems to be rendered into an svg with a large amount of top padding, so it's appearing outside and below the card itself. I would like the card to have a height of 100px and be slit into to equal sized areas. Area on left to contain a sparkline showing data item history and area on the right showing label and current value. This is my code:
<RadzenCard Style="margin: 0px; height: 100px;">
<div class="row">
<div class="col-6 m-0 p-0">
<RadzenChart>
<RadzenAreaSeries Smooth="false"
Data="@Data["scalars"].Find(x => x.Label == "In Waiting Room").HistoryList"
CategoryProperty="Label"
ValueProperty="Value"
Stroke="#c70000"
StrokeWidth="1"
Fill="#ffe6e6" />
<RadzenLegend Visible="false" />
<RadzenGridLines Visible="false" />
<RadzenValueAxis Visible="false" />
<RadzenCategoryAxis Visible="false" />
<RadzenChartTooltipOptions Visible="false" />
</RadzenChart>
</div>
<div class="col-6">
<h4>Waiting Room</h4>
<h3>@Data["scalars"].Find(x => x.Label == "In Waiting Room").Value</h3>
</div>
</div>
</RadzenCard>
Any ideas?
Thanks
Joe

