highcharts resize in jupyter
Opened this issue · 1 comments
genagibson commented
I am struggling to see how to resize the Highchart in jupyter notebook so that it fits to the cell/container. Is there a way to get the size to automatically adjust to fit the screen? Thank you.
gbowden39 commented
The usual Highcharts sizing option seems to work if you specify the chart height and width in pixels.
options = {
'chart': {
'height': '600',
'width': '950',
},
}
H.set_dict_options(options)
It does not work if you specify the chart height and width as a percentage.