|
|
|
@ -47,8 +47,16 @@ public class XBorderStyleWidgetCreator extends XWidgetCreator{
|
|
|
|
|
public AbstractBorderStyleWidget toData() { |
|
|
|
|
return (AbstractBorderStyleWidget) data; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected void initStyle() { |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
protected void addToWrapper(XLayoutContainer parentPanel, int width, int minHeight) { |
|
|
|
|
super.addToWrapper(parentPanel, width, minHeight); |
|
|
|
|
// REPORT-53175: 新创建的图表组件默认显示标题 since 10.0.18
|
|
|
|
|
// 将当前对象添加到父容器后,初始化默认样式的效果
|
|
|
|
|
initStyle(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected void initStyle() { |
|
|
|
|
BorderPacker style = toData().getBorderStyle(); |
|
|
|
|
initBorderStyle(); |
|
|
|
|
if (ComparatorUtils.equals(style.getType(), LayoutBorderStyle.TITLE)) { |
|
|
|
|