0.12.13 (Dec 2017)¶
Bokeh Version 0.12.13
is a targeted bugfix release that addresses
two issues:
push_notebook
regression in0.12.11
- Windows package install failures due to reserved “aux” filename
For full details see the CHANGELOG.
BokehJS Changes¶
bokehjs doesn’t require custom styles to make “responsive” layout modes work anymore. This means that there are no additional styles added a page, like margins. This results in margins working differently and now default to browser defaults. If you want to restore the previous behavior, then add the following to your HTML:
<style>
html {
width: 100%;
height: 100%;
}
body {
width: 90%;
height: 100%;
margin: auto;
}
</style>