Nathan Drezner
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.
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,...
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...
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...
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 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.
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...
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),...