用背景填充分组线
Fill grouped lines with background
我想创建一个包含多条线的分组对象,并用背景色填充该对象。
但是,如您所见,背景并不将线条视为框架。
是否可以只填充行内的分组对象?
无法使用分组线(样式将应用于具有矩形形状的整个组),但您可以使用 排列 > 插入 > 形状 创建自定义形状。您可以找到关于如何做到这一点的描述 here or here。如果您想在插入形状后对其进行编辑,您可以使用右侧格式面板中 样式 选项卡中的 编辑形状 来完成此操作(也可以编辑一些 draw.io 形状)。
与您的图片相似的示例形状:
<shape h="100" w="100" aspect="variable" strokewidth="inherit">
<foreground>
<path>
<move x="50" y="0" />
<line x="80" y="40" />
<line x="100" y="50" />
<line x="60" y="100" />
<line x="30" y="100" />
<line x="0" y="60" />
<close />
</path>
<fillstroke />
</foreground>
</shape>
如果您想要彩色背景,请记住使用 <fillstroke />
或 <fill />
。
我想创建一个包含多条线的分组对象,并用背景色填充该对象。 但是,如您所见,背景并不将线条视为框架。
是否可以只填充行内的分组对象?
无法使用分组线(样式将应用于具有矩形形状的整个组),但您可以使用 排列 > 插入 > 形状 创建自定义形状。您可以找到关于如何做到这一点的描述 here or here。如果您想在插入形状后对其进行编辑,您可以使用右侧格式面板中 样式 选项卡中的 编辑形状 来完成此操作(也可以编辑一些 draw.io 形状)。
与您的图片相似的示例形状:
<shape h="100" w="100" aspect="variable" strokewidth="inherit">
<foreground>
<path>
<move x="50" y="0" />
<line x="80" y="40" />
<line x="100" y="50" />
<line x="60" y="100" />
<line x="30" y="100" />
<line x="0" y="60" />
<close />
</path>
<fillstroke />
</foreground>
</shape>
如果您想要彩色背景,请记住使用 <fillstroke />
或 <fill />
。