Setting showticklabels = FALSE in radialaxis does not work.
(R API)
library(plotly)
p <- plot_ly(plotly::wind, r = r, t = t, color = nms, type = "area")
layout(p, radialaxis = list(showticklabels = FALSE), orientation = 270)
Annotations don't work at all with Polar scatter plot.
don't want to open up a new issue until I know more:
In Python:
import plotly.plotly as py
import plotly.graph_objs as go
import numpy as np
trace = go.Scatter(
r=[10],
t=[0],
name='adam',
mode='markers',
marker={'size': 80}
)
data = [trace]
fig = go.Figure(data=data)
py.iplot(fig)
results in the following:

A second and third trace appears automatically and the (t, r) coordinates (2, 11), (3, 12), and (4, 13) are automatically plotted.
@etpinard any idea where in plotly.js the error would be stemming from?
fixed in scatterpolar after #2200
see also https://github.com/plotly/plotly.js/issues/2255 for more polar development ideas
Most helpful comment
Setting showticklabels = FALSE in radialaxis does not work.
(R API)