UNPKG

@antv/g2plot

Version:

An interactive and responsive charting library

13 lines (11 loc) 274 B
import { View } from '@antv/g2'; /** tofront: 同步所有元素的位置 */ export function placeElementsOrdered(view: View) { if (!view) { return; } const elements = view.geometries[0].elements; elements.forEach((elem) => { elem.shape.toFront(); }); }