Dash.jl icon indicating copy to clipboard operation
Dash.jl copied to clipboard

Dash for Julia - A Julia interface to the Dash ecosystem for creating analytic web applications in Julia. No JavaScript required.

Results 52 Dash.jl issues
Sort by recently updated
recently updated
newest added

Following up on https://github.com/plotly/Dash.jl/pull/157 --- To reproduce, use: ``` $ tree . ├── compile.jl ├── Manifest.toml ├── MyApp │   ├── Manifest.toml │   ├── Project.toml │   └── src │   └── MyApp.jl...

We've been playing with Dash.jl + [PackageCompiler.jl](https://julialang.github.io/PackageCompiler.jl/stable/index.html) recently and things are working pretty well! Thanks very much for the efforts that went into https://github.com/plotly/Dash.jl/pull/131 One small problem we've encountered has...

When I tried to install with these set of lines: using Pkg Pkg.add(PackageSpec(url="https://github.com/plotly/DashBase.jl.git")) Pkg.add(PackageSpec(url="https://github.com/plotly/dash-html-components.git", rev="master")) Pkg.add(PackageSpec(url="https://github.com/plotly/dash-core-components.git", rev="master")) Pkg.add(PackageSpec(url="https://github.com/plotly/dash-table.git", rev="master")) Pkg.add(PackageSpec(url="https://github.com/plotly/Dash.jl.git", rev="dev")) **it gives an error**: Unsatisfiable requirements detected for package...

Hi there, I think square brackets are missing in your doc which should wrap around the Output argument: ```julia callback!(app, Output("output", "children"), [Input("submit-button", "n_clicks")], [State("state-1", "value"), State("state-2", "value")]) do n_clicks,...

Hello, The example on the Plotly Documentation: ``` using DataFrames, CSV, PlotlyJS using Dash, DashHtmlComponents, DashCoreComponents iris = dataset(DataFrame, "iris") p1 = plot( iris, x=:sepal_length, y=:sepal_width, color=:species, mode="markers", marker_size=8 )...

Are there any plans to bring Dash canvas to Julia? It would be cool to be able to draw and annotate.

Hi, I'm new to Dash.jl so the terminology may be confusing. In my case, I'd like to send a `ComponentArray` (exported from [ComponentArrays.jl](https://github.com/jonniedie/ComponentArrays.jl)) from a callback to another callback. I...

From comment on #140 : >If you felt like being extra-paranoid with tests (but I don't think this is necessary for this PR) there are a couple more cases we...

Is there a julia equivalent to `dash-auth` in Python or some other means for authentication?

> Works well thank you! Seems like we still have the issue of PlotlyJS eating plot margins for x and y axis labels. But that's another issue for another day....