Skip to Content
🚨 New Example: Handling Node Collisions!

ZIndexMode

ZIndexMode 类型用于定义如何计算节点和边的 z-index。

¥The ZIndexMode type is used to define how z-indexing is calculated for nodes and edges.

  • auto 模式会自动管理选择和子流程的 z 轴索引。

    ¥auto mode will automatically manage z-indexing for selections and sub flows.

  • basic 模式仅管理选择项的 z 轴索引。

    ¥basic mode will only manage z-indexing for selections.

  • manual 模式不会应用任何自动 z 轴索引。

    ¥manual mode does not apply any automatic z-indexing.

export type ZIndexMode = 'auto' | 'basic' | 'manual';
Last updated on