Column Chart Convert String type number into integer on x-axis

1
Hi all, I am using Mendix Column Chart (see below) to show ActionID (x axis) and its quantity (y axis) but the x axis “converts” the ActionId which is of string data type to what looks like integer (e.g. ActionId “801861” to 802k) . I am using a non-persistable table created via microflow  as the data source for the column chart.  Any idea what might have caused this issue and advice to fix it . Any Suggestion would be helpful.?
asked
3 answers
0

Hi any solution on this?

answered
0

You can try this, it will remove the k abbrevation for thousand

 "xaxis": {
    "tickformat": "000"
  },

answered
0

I found the solution 

it is to put

{
  "yaxis": {
    "autotypenumbers": "strict"
  }
}
 

answered