Dash v1.14.0 is a minor release featuring:
-
Ability to update the
document.title
(the title that appears in your browser tab) via atitle=
argument. By default this is'Dash'
app = dash.Dash(title='Weekly Analytics')
-
Ability to update the
document.title
dynamically when you click on different tabs, navigate different pages, or really during any other interaction! See the Update the Document Title Dynamically based off of the URL or Tab example. -
Ability to update the “Updating…” message that appears in the
document.title
during update via theupdate_title=
argument. Set toNone
to remove this message. This was a community contribution from @stlehmann!See the Customizing or Removing Dash’s “Updating…” Message example in the docs.
-
Upgraded Plotly.js from 1.54.3 to 1.54.7
-
Added ability to configure markdown links behavior in DataTable. This fixes a regression introduced with #787 that made it impossible to open markdown links in the current tab. This adds a new property called
markdown_options
:dash_table.DataTable(markdown_options={'link_target': '_self'})
link_target
can be_blank
,_parent
,_self
,_top
or an arbitrary string (default:_blank
)
Give this a release a try with
pip install dash==1.14.0
and let us know how it goes!
5 posts - 4 participants