@adaptabletools/adaptable
Version:
Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
13 lines (12 loc) • 656 B
TypeScript
import * as React from 'react';
import { StyledColumn } from '../../../../AdaptableState/StyledColumnState';
import { AdaptableApi } from '../../../../types';
/**
* Summary of the Ranges / Column Comparison configuration of a styled column.
* Works for both Gradient and Percent Bar.
*/
export declare const renderStyledColumnRangesSummary: (data: StyledColumn, api?: AdaptableApi) => React.JSX.Element | React.JSX.Element[];
export interface StyledColumnWizardRangesSectionProps {
onChange: (styledColumn: StyledColumn) => void;
}
export declare const StyledColumnWizardRangesSection: React.FunctionComponent<StyledColumnWizardRangesSectionProps>;