ColumnNumber

Type of column to contain a number value.

Interface

interface IColumnNumber extends IColumn {
  decimals: int;
  minimumValue: double;
  maximumValue: double;
  showAsPercentage: bool;
}

Properties

decimals

Number of decimals to display the value of the field.

  • Type: int

  • Required: No

  • Default value: 2

minimumValue

Minimum value of the number field.

  • Type: double

  • Required: No

maximumValue

Maximum value of the number field.

  • Type: double

  • Required: No

showAsPercentage

Boolean to specify if value need to be shown as percentage.

  • Type: bool

  • Required: No