Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxTextFormatSettings.UseCurrencyAccountingStyle Property

Specifies whether to apply the Accounting style to values of the Currency format type.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[DefaultValue(true)]
[Parameter]
public bool UseCurrencyAccountingStyle { get; set; }

#Property Value

Type Default Description
Boolean true

true to display negative values with parentheses; false to display negative values with a minus sign.

#Remarks

The following code snippet configures DxBarGauge labels as follows:

  • Sets the format type to Currency.
  • Assigns the GBP currency code to the Currency property.
  • Specifies value precision.
  • Disables the UseCurrencyAccountingStyle property.

Bar Gauge - Currency Format Type

Razor
<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