@qn-pandora/pandora-visualization
Version:
Pandora 通用可视化库
22 lines (21 loc) • 1.05 kB
TypeScript
/// <reference types="hoist-non-react-statics" />
import React from 'react';
import BasicComponent from '../../../../components/Base/BasicComponent';
import TableChartStyleService from '../../../../base-pandora-visualization/services/chart-style/charts/table/base';
import { TThemeOption } from '../../../../constants';
interface IStyleElementProps {
chartStyleService: TableChartStyleService;
themeOption: TThemeOption;
}
export declare class StyleElement extends BasicComponent<IStyleElementProps, any> {
get chartStyleService(): TableChartStyleService;
get showBorder(): boolean;
get tableTitleFont(): {
fontSize: number;
color: string;
};
get tableTitleBgColor(): string;
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;