UNPKG

@qn-pandora/pandora-visualization

Version:

Pandora 通用可视化库

21 lines (20 loc) 1.14 kB
/// <reference types="hoist-non-react-statics" /> import React from 'react'; import { IChartDataset } from '@qn-pandora/app-sdk'; import LineChartStyleService from '../../../base-pandora-visualization/services/chart-style/charts/line/line'; import { IThemeService } from '../../../services/theme/registerTheme'; interface ILineChartConfigFormProps { chartStyleService: LineChartStyleService; dataset: IChartDataset; mergeDataset: IChartDataset; themeService: IThemeService; } export declare class LineChartConfigForm extends React.Component<ILineChartConfigFormProps, any> { get colors(): import("../../..").IColor[]; get isPercentageChart(): boolean; get yShowProperty(): IKeyValues<any>; handlePointChange(value: any, key: string): void; render(): React.JSX.Element; } declare const _default: React.ComponentClass<ILineChartConfigFormProps, any> & import("hoist-non-react-statics").NonReactStatics<(React.ComponentClass<ILineChartConfigFormProps, any> & typeof LineChartConfigForm) | (React.FunctionComponent<ILineChartConfigFormProps> & typeof LineChartConfigForm), {}>; export default _default;