Back to Devexpress

DxChartAxisMinorTick.Width Property

blazor-devexpress-dot-blazor-dot-dxchartaxisminortick-16b77897.md

latest1.4 KB
Original Source

DxChartAxisMinorTick.Width Property

Specifies the width of minor ticks.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[DefaultValue(1)]
[Parameter]
public int Width { get; set; }

Property Value

TypeDefaultDescription
Int321

The width of minor ticks in pixels.

|

Remarks

Use the Width and Length properties to specify tick size.

The following example sets the tick thickness to 3 pixels:

razor
<DxChart Data="@forecasts">
    <DxChartLineSeries ArgumentField="@((WeatherForecast i) => i.Date)"
                       ValueField="@((WeatherForecast i) => i.TemperatureF)"
                       Name="Temperature, F" />
    <DxChartArgumentAxis>
        <DxChartAxisMinorTick Visible="true" Width="3" />
    </DxChartArgumentAxis>
</DxChart>

See Also

DxChartAxisMinorTick Class

DxChartAxisMinorTick Members

DevExpress.Blazor Namespace