currencyformat <negativeprefix> <negativesuffix> <thousandseparator> <fractionseparator> <fractiondigits>

currencyformat <negativeprefix> <negativesuffix> <thousandseparator> <fractionseparator> <fractiondigits>
Description

These values specify the default format used for all currency 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.

AttributesNameTypeDescription
negativeprefixSTRING 
negativesuffixSTRING 
thousandseparatorSTRING 
fractionseparatorSTRING 
fractiondigitsINTEGER 
Contextproject,
InheritableYesScenario Spec.No
See alsocurrency

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
}