@adaptabletools/adaptable
Version:
Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
10 lines (9 loc) • 595 B
TypeScript
import * as React from 'react';
import { BarStyleCellTextPlacement, BarStyleCellTextProperties } from '../../../../../AdaptableState/StyledColumns/Common/BarStyleProperties';
import { CellTextOption } from '../../../../../AdaptableState/StyledColumns/Common/CellTextOptions';
export declare const BarStyleCellTextLayoutEditor: React.FunctionComponent<{
disabled?: boolean;
cellTextProperties?: BarStyleCellTextProperties;
onToggle: (token: CellTextOption, show: boolean) => void;
onPlacementChange: (token: CellTextOption, patch: Partial<BarStyleCellTextPlacement>) => void;
}>;