@adaptabletools/adaptable
Version:
Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
11 lines (10 loc) • 545 B
TypeScript
import React from 'react';
import { ExternalChartDefinition } from '../../../../AdaptableState/ChartingState';
import { AdaptableApi } from '../../../../types';
export declare const isSettingsValid: (chartDefinition: ExternalChartDefinition, api: AdaptableApi) => true | string;
export interface SettingsSectionProps {
chartDefinition: ExternalChartDefinition;
onChange: (chartDefinition: ExternalChartDefinition) => void;
showPreview?: boolean;
}
export declare const SettingsSection: React.FunctionComponent<SettingsSectionProps>;