散景的三个参数是什么resize_width_height

时间:2016-04-30 07:01:41

标签: bokeh

散景函数中的plot.resize_width_height(true,true,true)有三个布尔参数。我认为首先是调整宽度,第二个调整高度,但第三个是什么?

1 个答案:

答案 0 :(得分:1)

  

参数是:使用宽度,使用高度,保持纵横比

来自bokeh示例embed_responsive_width_height.py

var plotresizer = function() {
    // arguments: use width, use height, maintain aspect ratio
    plot.resize_width_height(true, true, true);
};