plotly / Dash.jl

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

UndefVarError: html_div not defined

birodaniel8 opened this issue · comments

Hi all,

I have added the Dash package to Julia and I am just trying to run the "Basic application" you shared in the readme.md but it fails with "UndefVarError: html_div not defined". I have tried the stable version as well. What am I possibly missing here?

Thanks,
Daniel

Hi, @birodaniel8 !
It's my fault - an example from the readme does not fully comply with the current dev. In order for everything to work, add

using DashHtmlComponents
using DashCoreComponents

I will try to correct the documentation as soon as possible

That is working, thank you!