Posted 10 May 2021, 6:16 pm EST
Hello,I have a setup, where i use bootstrap to position my charts.
But how do i configure my chart to use all the space it has accesable.
The accesable area can be seen by the blue overlay.

Forums Home / ComponentOne / Blazor Edition Topics
Posted by: ehh on 10 May 2021, 6:16 pm EST
Posted 10 May 2021, 6:16 pm EST
Hello,Replied 10 May 2021, 8:01 pm EST
Hi,Replied 17 June 2021, 9:54 pm EST
Hello,Marked as Answer
Replied 21 June 2021, 10:48 pm EST
Hi Emil,<style>
.custom-height{
height:790px;
}
</style>
<FlexChart Class="custom-height" ItemsSource="forecasts" ChartType="ChartType.Column" BindingX="Date" Binding="TemperatureC" Style="@("height:100%;max-height:100%;")">
....
</FlexChart>
Replied 22 June 2021, 12:07 am EST
Sounds great.Replied 23 July 2021, 10:50 pm EST
that CSS worked for me, thanks a lot. https://mdro.fun/mobdro/Replied 19 February 2022, 7:06 pm EST
Hi Emil,