UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

10 lines (9 loc) 518 B
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; } export declare const SettingsSection: React.FunctionComponent<SettingsSectionProps>;