UNPKG

scichart

Version:

Fast WebGL JavaScript Charting Library and Framework

19 lines (18 loc) 677 B
import { AxisBase2D } from "../Charting/Visuals/Axis/AxisBase2D"; /** * A class which implements {@link IIncludeYAxis} should allow to include/exclude {@link AxisBase2D | Axis} from {@link IChartModifierBase} */ export interface IIncludeYAxis { /** * Mark if the YAxis should be included or excluded, for instance for {@link IChartModifierBase} */ includeYAxis(axis: AxisBase2D, isIncluded: boolean): void; /** * Returns the list of included {@link AxisBase2D | Axis} for this {@link IChartModifierBase} */ getIncludedXAxis(): AxisBase2D[]; /** * Resets to include all axes */ includeAllAxes(): void; }