Nathan Drezner

Results 52 issues of Nathan Drezner

Request from a community member to support 3D polar bar chart. Today we have a 2D version, but a 3D version would be quite interesting.

feature
P3

We provide some geojson attributes but it's not obvious from our docstrings what can/can't be passed. This causes issues especially for LLMs trying to generate Plotly charts with geojson attributes,...

feature
P2
documentation

For Mapbox traces, it looks like either the default `style` is missing or is an undocumented (required) parameter. If my memory serves me correctly, it wasn't required to specify a...

bug
P2

Whenever we issue a new release of Plotly.js, we should update the corresponding version specified in https://github.com/microsoft/vscode-notebook-renderers/blob/ea1eda7bd67e40b20ef218b0fede7f4ce66efeae/package.json#L179 for VSCode users. We see a handful of users who are running into...

P1
infrastructure

We're bumping to React 18 in core Dash, so our component cookiecutter should also bump. I don't think anything else needs to change but @T4rk1n correct me if I'm wrong....

![snyk-top-banner](https://res.cloudinary.com/snyk/image/upload/r-d/scm-platform/snyk-pull-requests/pr-banner-default.svg) ### Snyk has created this PR to fix 3 vulnerabilities in the pip dependencies of this project. #### Snyk changed the following file(s): - `requirements.txt` --- > [!IMPORTANT] >...

Add `plotly-cloud` https://pypi.org/project/plotly-cloud/ as a part of the default Dash install.

Python 3.14 offers a free-threaded version. Dash 3.3.0 will support Python 3.14, so it is worth taking time to start testing and evaluating Dash in a free-threaded runtime.

feature
P3

In https://plotly.com/python/tile-scatter-maps/#basic-example-with-geopandas, the example: ```python import plotly.express as px import geopandas as gpd geo_df = gpd.read_file(gpd.datasets.get_path("naturalearth_cities")) fig = px.scatter_map( geo_df, lat=geo_df.geometry.y, lon=geo_df.geometry.x, hover_name="name", ) fig.show() ``` Gives: ```log AttributeError: The...

bug
P1

Titles and subtitles in Plotly charts overflow by default. It's impossible to have them wrap. With subtitle support, having long strings in this area is more common (and more useful),...