我如何摆脱白色背景。这是图像,我需要摆脱白色背景,最后它应该blue colour显示panel.

对我有用的很简单:
bodyStyle : 'background:none', // Removes the default white background
尝试将plain: true, 放入面板的配置中。
添加配置
bodyCls:'your-css'
或者
`cls:'your-css'`
在 default.html 或您的特定样式表中添加 css 样式。
.your-css
{
background-color:#4169E1 !important;
}