@qn-pandora/pandora-visualization
Version:
Pandora 通用可视化库
20 lines (19 loc) • 1.02 kB
TypeScript
/// <reference types="hoist-non-react-statics" />
import React from 'react';
import BasicComponent from '../../../../components/Base/BasicComponent';
import PieBucketStyleService from '../../../../base-pandora-visualization/services/chart-style/charts/pie/bucket';
import { TThemeOption } from '../../../../constants/theme-interface';
interface IStyleElementProps {
chartStyleService: PieBucketStyleService;
themeOption: TThemeOption;
getPopupContainer?: () => HTMLElement;
}
export declare class StyleElement extends BasicComponent<IStyleElementProps, any> {
get types(): {
text: string;
value: import("../../../../constants/chart-style").ELabelType;
}[];
render(): React.JSX.Element;
}
declare const _default: React.ComponentClass<IStyleElementProps, any> & import("hoist-non-react-statics").NonReactStatics<(React.ComponentClass<IStyleElementProps, any> & typeof StyleElement) | (React.FunctionComponent<IStyleElementProps> & typeof StyleElement), {}>;
export default _default;