UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

8 lines 392 B
import type { Series } from '@mui/x-charts-vendor/d3-shape'; /** * Positive values are stacked above zero, while negative values are stacked below zero. * * @param series A series generated by a stack generator. * @param order An array of numeric indexes representing the stack order. */ export declare function offsetDiverging(series: Series<any, any>[], order: Iterable<number>): void;