Skip to content

Line and odd Formats

You can set line and odd formats for the SPA using the values described below.

Line Formats

SPA supports the following line formats:

1
type LineFormat = 'european' | 'american';

Examples:

line format european

line format american

Odd formats

SPA supports the following odd formats:

1
2
3
4
5
6
7
type OddFormat =
  | 'Decimal'
  | 'Fractional'
  | 'US'
  | 'HongKong'
  | 'Indo';
  | 'Malay'

Examples:

odd format decimal

odd format fractional

odd format US

odd format HongKong

odd format Indo

odd format Malay