PivotGridFieldToolTips.ValueFormat Property
Provides access to the formatting settings applied to a field value tooltip.
Namespace: DevExpress.XtraPivotGrid
Assembly: DevExpress.XtraPivotGrid.v24.2.dll
Declaration
[XtraSerializableProperty(XtraSerializationVisibility.Content)]
public FormatInfo ValueFormat { get; }
Property Value
Type | Description |
---|---|
FormatInfo | A FormatInfo object that provides the formatting settings applied to a field value tooltip. |
Remarks
This property provides two different approaches to formatting values. The first is to use the format strings that are described in the Standard Numeric Format Strings, Custom Numeric Format Strings, Standard Date and Time Format Strings and Custom Date and Time Format Strings topics in MSDN.
You can also implement a custom formatter object to specify custom formatting rules of any complexity. Read the following topic for detailed information and examples: Data Formatting.
See Also