UNPKG

@elastic/charts

Version:

Elastic-Charts data visualization library

48 lines 1.5 kB
import type { ReactNode } from 'react'; import React from 'react'; import type { OptionalKeys } from 'utility-types'; import type { LegendPositionConfig, PointerEvent } from '../specs'; import type { ChartSize } from '../utils/chart_size'; /** @public */ export interface ChartProps { /** * The type of rendered * @defaultValue `canvas` */ renderer?: 'svg' | 'canvas'; size?: ChartSize; className?: string; id?: string; title?: string; description?: string; children?: ReactNode; } interface ChartState { legendDirection: LegendPositionConfig['direction']; paddingLeft: number; paddingRight: number; displayTitles: boolean; } /** @public */ export declare class Chart extends React.Component<ChartProps, ChartState> { static defaultProps: Pick<ChartProps, OptionalKeys<ChartProps>>; private unsubscribeToStore; private chartStore; private chartContainerRef; private chartStageRef; constructor(props: ChartProps); componentDidMount(): void; componentWillUnmount(): void; componentDidUpdate({ title, description, size }: Readonly<ChartProps>): void; getPNGSnapshot(options?: { backgroundColor: string; }): { blobOrDataUrl: any; browser: 'IE11' | 'other'; } | null; getChartContainerRef: () => React.RefObject<HTMLDivElement>; dispatchExternalPointerEvent(event: PointerEvent): void; render(): React.JSX.Element; } export {}; //# sourceMappingURL=chart.d.ts.map