How do i change the hover info

How do i change the hover info x lable,y lable and z lable.for 3D surface plots
Example :
data.hoverinfo ='x+y+z’
Display Result:
x:1
y:2
z:3
Desired Results:
ts:1
hz:2
ftt:3

Try setting hoverinfo: 'text' and adding a 2D text array to your surface trace object.

See example: http://codepen.io/etpinard/pen/RGJpoO

1 Like

thank you very much…