How to hide x-axis and y-axis units on line chart or timeseies?

0
I want to hide x and y aixs units, I just want to show that curve line thats it. 
asked
1 answers
5

To hide the x-axis and y-axis, add the following to the Layout options under the Advanced tab:

{
  "xaxis": {
    "visible": false
  },
  "yaxis": {
    "visible": false
  }
}

Also make sure to set the Mode to Advanced in the same tab.

answered