I just need to hide the labels at the bottom of the chart but it doesn't work. This is my code.
<TooltipTemplate Context="data">
<div>
<strong>Number: </strong><span> @data.number</span><br />
</div>
</TooltipTemplate>
<ChildContent>
@foreach (var object in list)
{
<RadzenSeriesAnnotation Visible="true" TItem="CreditoVista" Data="@varible" OffsetY="-16" OffsetX="-40" Text="@number.ToString(" 0.00")" />
}
<RadzenMarkers MarkerType="MarkerType.Circle" />
</ChildContent>
</RadzenLineSeries>
<RadzenCategoryAxis Padding="10" LabelRotation="-21" >
<RadzenTicks>
<Template Context="data">
@if (_visibleEtiquetasCategoria)
{
<span>@data</span>
}
</Template>
</RadzenTicks>
<RadzenAxisTitle Text="Date" />
</RadzenCategoryAxis>
<RadzenValueAxis Step="@_stepMonto">
<RadzenGridLines Visible="false" />
<RadzenAxisTitle Text="Price" />
</RadzenValueAxis>
<RadzenLegend Visible="false" />
And use but it removes the x-axis line as well and I need it to only show and hide the labels