It is possible hide extra line in Blazor Chart?

Answer :

Yes, we can hide additional lines in the chart to define the height and width of the chart to 100%. Here is the code snippet for your reference.

<EjsDashboardLayout>

<ContentTemplate>

<EjsChart Height="100%" Width="100%">

EjsChart>

ContentTemplate>

EjsDashboardLayout>

<style>

.e-chart {

height: 100%;

width: 100%;

}

style>


Find the sample for to hide extra lines in Chart from here.

Loader.
Up arrow icon