Skip to content

Full list of polar bugs #275

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
etpinard opened this issue Feb 22, 2016 · 4 comments
Closed

Full list of polar bugs #275

etpinard opened this issue Feb 22, 2016 · 4 comments
Milestone

Comments

@etpinard
Copy link
Contributor

  • radialAxis -> tickcolor doesn't do anything
  • polar can't do categorical labels
  • Closed loop charts with string coordinates shouldn't require needsEndSpacing: false (example)
@etpinard etpinard added this to the On-par polar milestone Feb 22, 2016
@louisza
Copy link

louisza commented Aug 12, 2016

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)

@brian428
Copy link

brian428 commented May 1, 2017

Annotations don't work at all with Polar scatter plot.

@Kully
Copy link
Contributor

Kully commented Nov 2, 2017

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:

screen shot 2017-11-02 at 4 52 42 pm

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?

@etpinard
Copy link
Contributor Author

fixed in scatterpolar after #2200

see also #2255 for more polar development ideas

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants