Plotly.js: Full list of polar bugs

Created on 22 Feb 2016  路  4Comments  路  Source: plotly/plotly.js

  • radialAxis -> tickcolor doesn't do anything
  • polar can't do categorical labels
  • Closed loop charts with string coordinates shouldn't require needsEndSpacing: false (example)

Most helpful comment

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)

All 4 comments

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:

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?

fixed in scatterpolar after #2200

see also https://github.com/plotly/plotly.js/issues/2255 for more polar development ideas

Was this page helpful?
0 / 5 - 0 ratings

Related issues

jonmmease picture jonmmease  路  3Comments

nicolaskruchten picture nicolaskruchten  路  3Comments

bryaan picture bryaan  路  3Comments

n-riesco picture n-riesco  路  3Comments

deecay picture deecay  路  3Comments