/** * Plot 语义图层的默认 core zIndex。 * @description 数值只表达跨语义层的默认堆叠;同层内仍由源码顺序或局部机制决定 */ export declare const PlotLayerZIndex: { /** Plot 背景层,位于所有可视内容下方 */ readonly Background: -1000; /** 坐标网格层,位于背景之上、数据图元之下 */ readonly Grid: -300; /** 数据图元层,作为 Plot 内容的默认堆叠基线 */ readonly Mark: 0; /** 坐标轴层,用于轴线、刻度及其标签 */ readonly Axis: 200; /** 分面标签层,用于各分面区域的标题或标识 */ readonly FacetLabel: 300; /** Plot 标签层,用于标题、说明和来源等静态文本 */ readonly PlotLabel: 400; /** 图例层,位于 Plot 标签层之上 */ readonly Legend: 500; /** 交互覆盖层,用于需要置于其他语义内容之上的交互反馈 */ readonly Interaction: 900; }; //# sourceMappingURL=constants.d.ts.map