密谋:保存图像后如何删除空白?

时间:2020-08-11 21:05:03

标签: python plotly

我对将绘图表另存为图像有疑问。我编写了以下代码:

fetch('../svc/RegistrationForm.asmx/GetRegistrationType', {
    method: 'GET',
    credentials: 'same-origin',
    headers: {
        'Content-Type': 'application/json'
    }
}).then((response) => {
    types = response.json();
    
    for (const [ID, Name] of Object.entries(types)) {
        console.log(ID, Name);
        options += '<option value="' + ID + '" text="' + Name + '" />';
    }
    $('#registrationTypeDropDown').append(options);
  });

但是不幸的是,桌子底部有一个很大的空白。

big white space

我可以从图像上剪切吗?高度设置不合适,因为表格的行数可能不同。

0 个答案:

没有答案