etpinard

Results 123 comments of etpinard

### Current dash docs articles on background callbacks - https://dash.plotly.com/background-callbacks - https://dash.plotly.com/background-callback-caching ### History lesson _please let me know if I'm missing anything_ :smile: Background callbacks in python dash were...

@antoinerg can you confirm that the current sankey implementation does not allow sorting nodes?

Yep, I like the idea of adding a third `layer` value (that's why we added this attribute as an enumerated as opposed to a boolean). Now, I would prefer something...

Come to think of it, maybe adding `layer: 'below traces'` would be even better for your use case?

Thanks for pointing this out. Callbacks emitting `Object {xaxis.range: Array[2]}` are still _valid_ as ```js Plotly.relayout(gd, 'xaxis.range', [0, 1]) // is equivalent to Plotly.relayout(gd, {'xaxis.range[0]': 0, 'xaxis.range[1]': 1}) ``` But,...

A known limitation of using WebGL for 3D plots. Won't be fixed any time soon.

# Tentative list ### Things that are missing from Dash.jl since before Dash.jl v1 (and dash v1.15.0) taken from the TODO items in https://github.com/plotly/Dash.jl/projects/1 - User-defined routes https://github.com/plotly/Dash.jl/issues/35 - Debug...

### Update > `dcc_geolocation` _just works_ :heavy_check_mark: :tada: :champagne: Tested with https://dash.plotly.com/dash-core-components/geolocation translated in Julia as: see Julia snippet ```jl using Dash app = dash() app.layout = html_div() do html_button("Update...

### Update > `dcc_location` [`refresh="callback-nav"`](https://github.com/plotly/dash/pull/2068) does not work :x: Translating this [`"callback-nav"` test](https://github.com/AnnMarieW/dash/blob/6ba4f9d4ee83226f273e0239231d170effda0157/components/dash-core-components/tests/integration/location/test_location_callback.py#L141-L167) see Julia snippet ```jl using Dash app = dash() app.layout = html_div() do dcc_location(; id = "url",...

### Update Component as props does not work :x: ```jl using Dash app = dash() app.layout = html_div() do dcc_checklist(; id="checklist", options=[(label=html_h2("H2 label"), value="h2"), (label="plain label", value="plain")]) end run_server(app, "0.0.0.0",...