@qn-pandora/pandora-visualization
Version:
Pandora 通用可视化库
21 lines (20 loc) • 971 B
TypeScript
/// <reference types="hoist-non-react-statics" />
import React from 'react';
import StatusPanelChartStyleService from '../../../../base-pandora-visualization/services/chart-style/charts/metric-panel/status';
import BasicComponent from '../../../Base/BasicComponent';
import { TThemeOption } from '../../../../constants';
export interface IStyleProps {
chartStyleService: StatusPanelChartStyleService;
themeOption: TThemeOption;
}
export declare class StyleElement extends BasicComponent<IStyleProps, {}> {
get contentFontStyle(): {
color: any;
fontSize: any;
};
get showMetricName(): boolean;
handleChange(font: any): void;
render(): React.JSX.Element;
}
declare const _default: React.ComponentClass<IStyleProps, any> & import("hoist-non-react-statics").NonReactStatics<(React.ComponentClass<IStyleProps, any> & typeof StyleElement) | (React.FunctionComponent<IStyleProps> & typeof StyleElement), {}>;
export default _default;