UNPKG

ag-charts-enterprise

Version:

Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue

11 lines (10 loc) 684 B
import { type AxisPluginModuleDefinition } from 'ag-charts-core'; import type { AgBaseCrossLineOptions } from 'ag-charts-types'; /** * Enterprise override of the community `CrossLinesModule` (same `name`, same `version`, * `enterprise: true`). The registry's override-by-name mechanism replaces the community * definition when the enterprise bundle is loaded; only the `register` hook differs. * Installs a polar-aware `crossLine` factory that branches on `axisCtx.axisType`, returning * a `PolarCrossLine` for polar axes and falling back to the cartesian implementation otherwise. */ export declare const CrossLinesModule: AxisPluginModuleDefinition<AgBaseCrossLineOptions[]>;