Search code examples
d3.jsnumber-formattingapache-superset

Format number to multiples of 1000 and round it off to one decimal place


I am have a number like this:

988517.05

I am trying to display it as:

998.5 K

which means multiple of thousand rounded off to one decimal place.

What should be the Number Format defined in the customization tab of Apache superset.


Solution

  • Try .4s for the Number Format:

    enter image description here