ag-charts-community
Version:
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
9 lines (8 loc) • 461 B
TypeScript
import type { ChartAxis } from '../chartAxis';
import { CrossLinesPlugin } from './crossLinesPlugin';
/**
* Resolves the {@link CrossLinesPlugin} attached to an axis, if any. Used by chart-level callers
* (cartesian chart's overflow handling, the navigator mini-chart) that need to interact with
* cross-lines without the axis carrying a typed plugin reference.
*/
export declare function getCrossLinesPlugin(axis: ChartAxis): CrossLinesPlugin | undefined;