Open Flash Chart :: wiki :: JSON

We need to fix this, but at the moment it there are some limited options:

{
  /* .. chart stuff .. */

  "num_decimals": 3,
  "is_fixed_num_decimals_forced": true,
  "is_decimal_separator_comma": true,
  "is_thousand_separator_disabled": true
}
  • is_fixed_num_decimals_forced, e.g, set this to 2 then 0.1 becomes 0.10, 1 becomes 1.00, 3.333333 becomes 3.33
  • is_decimal_separator_comma, the UK format 1,000.11 becomes 1.000,11
  • is_thousand_separator_disabled, the UK format 1,000.11 becomes 1000.11

These changes are GLOBAL and effect all numbers in the chart, X and Y axis, tooltips etc...