I have a setup of ELK 7.10.0v.
I made pie chart using lense there I want to change the value at the end of the number in pie chart to Million and in Billions for making easy to understand.
I work on Lens, and we haven't made a simple formatter for this yet. So for now you'll need to set the formatting options in a different part of Kibana. You have two options:
Assign a formatter to the field in your index pattern. Specifically you can use the number format pattern 0,0a which will produce numbers like "208m" or "1b" instead of the values you're seeing. You could also do 0,0.0a which will show 1.4b instead of what you're seeing.
Use a scripted field to do simple math like doc['field'].value / 1000000. This is separate from the formatter, but some users find this useful.
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.