ChartElementFormat.Billions(Nullable<Byte>) Method
In This Article
Displays numbers as a billion.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
#Declaration
C#
public static ChartElementFormat Billions(
byte? precision = null
)
#Optional Parameters
Name | Type | Default | Description |
---|---|---|---|
precision | Nullable<Byte> | null | Specifies a number of digits in the fractional part of the value. |
#Returns
Type | Description |
---|---|
Chart |
A Chart |
#Remarks
Call the Billions
method to format a number as a billion, for example, 1 100 000 000.11 → 1B. You can use this method for axis and series labels. The following code snippet calls the method for the value axis of the Chart:
Razor
<DxChart Data="@forecasts">
<DxChartValueAxis>
<DxChartAxisLabel Format="ChartElementFormat.Billions()"></DxChartAxisLabel>
<DxChartAxisTitle Text="Items, B"></DxChartAxisTitle>
</DxChartValueAxis>
@* ... *@
</DxChart>
You can also use the precision
parameter to specify the number of digits in the fractional part of a value. For example, if precision
is 2, values are formatted as 1 200 000 000 → 1.20B. This parameter is optional.
See Also