Change Y-axis format in AnyChart widget

0
How to change the Y-axis format from 10k to 10000 in any chart widget???
asked
1 answers
5

In the "Layout options" section, you can add the tick format property to the "yaxis":

 

{

  "yaxis" : { 

     "tickformat" : "000"  

   }

}

 

image.png

answered