blazor-devexpress-dot-blazor-dot-dxtextformatsettings-bb024a34.md
Specifies whether to apply the Accounting style to values of the Currency format type.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
[DefaultValue(true)]
[Parameter]
public bool UseCurrencyAccountingStyle { get; set; }
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true to display negative values with parentheses; false to display negative values with a minus sign.
|
The following code snippet configures DxBarGauge labels as follows:
Currency.GBP currency code to the Currency property.UseCurrencyAccountingStyle property.<DxBarGauge Width="100%"
Height="500px"
StartValue="-5"
EndValue="5"
BaseValue="0"
Values="@Values">
<DxBarGaugeLabelSettings>
<DxTextFormatSettings Type="TextFormat.Currency"
Currency="GBP"
Precision="2"
UseCurrencyAccountingStyle="false"/>
</DxBarGaugeLabelSettings>
</DxBarGauge>
@code {
double[] Values = new double[] { -2.13, 1.48, -3.09, 4.52, 4.9, 3.9 };
}
See Also