UNPKG

cl-react-graph

Version:
77 lines (76 loc) 1.78 kB
import React, { Component } from 'react'; import { EColorManipulations, IBarChartDataSet } from '../Histogram'; import { DeepPartial } from '../utils/types'; import { IChartState, IMargin, TipContentFn } from './types'; interface ILabels { display: boolean; displayFn: (d: any, ix: number) => string | number; } export interface IPieDataItem { count: number; groupLabel: string; label: string; } export interface IPieChartProps { data: { bins: string[]; counts: IBarChartDataSet[]; }; backgroundColor: string; className: string; colorScheme: string[]; donutWidth: number; height: number; hover?: Partial<Record<EColorManipulations, number>>; labels: ILabels; margin: IMargin; tip: any; tipContainer: string; tipContentFn: TipContentFn<string>; visible: { [key: string]: boolean; }; width: number | string; children?: React.ReactNode; } /** * PieChart component */ declare class PieChart extends Component<DeepPartial<IPieChartProps>, IChartState> { private chart; private ref; /** * Constructor */ constructor(props: DeepPartial<IPieChartProps>); /** * Handle the page resize */ private handleResize; /** * Component mounted */ componentDidMount(): void; /** * Component updated */ componentDidUpdate(): void; /** * Get the chart state */ getChartState(): DeepPartial<IPieChartProps>; /** * Component will un mount, remove the chart and * any event listeners */ componentWillUnmount(): void; /** * Get the chart's dom node */ private getDOMNode; /** * Render */ render(): JSX.Element; } export default PieChart;