The TaskJuggler Manual | ||
---|---|---|
Prev | Chapter 7. Property Reference | Next |
numberformat <negativeprefix> <negativesuffix> <thousandseparator> <fractionseparator> <fractiondigits> | |||
---|---|---|---|
Description | These values specify the default format used for all numerical real values. The negativeprefix and negativesuffix strings enclose negative currency values. The thousandseparator can be used to make large numbers more readable. The fractionseparator separates the fractional part from the rest. fractiondigits specifies how many fractional digits should be shown at a maximum. | ||
Attributes | Name | Type | Description |
negativeprefix | STRING | ||
negativesuffix | STRING | ||
thousandseparator | STRING | ||
fractionseparator | STRING | ||
fractiondigits | INTEGER | ||
Context | project, | ||
Inheritable | Yes | Scenario Spec. | No |
project prj "Project" "1.0" 2000-01-01 - 2000-03-01 { # German number format: e. g. -10000,20 5014,11 numberformat "-" "" "" "," 2 # US currency format: e. g. (10,000.20) 5,014.11 currencyformat "(" ")" "," "." 2 } task t "Task" { start 2000-01-01 milestone }