@qn-pandora/pandora-visualization
Version:
Pandora 通用可视化库
15 lines (14 loc) • 531 B
TypeScript
import React from 'react';
import { IChartDataset } from '@qn-pandora/app-sdk';
import OutlierChartStyleService from '../../../../base-pandora-visualization/services/chart-style/charts/outlier';
interface IYAxisProps {
chartStyleService: OutlierChartStyleService;
dataset: IChartDataset;
}
export default class YAxis extends React.Component<IYAxisProps, any> {
get fieldOption(): string[];
handleOnChange(value: any): void;
handleCrossAxisNameChange(e: any): void;
render(): React.JSX.Element;
}
export {};