UNPKG

@qn-pandora/pandora-visualization

Version:

Pandora 通用可视化库

13 lines (12 loc) 473 B
import * as React from 'react'; import SparkLineConfig from '../../../base-pandora-visualization/services/chart-style/components/sparkline'; import { TThemeOption } from '../../../constants/theme-interface'; interface ISparkLinePanel { sparkline: SparkLineConfig; getPopupContainer?: () => HTMLElement; themeOption: TThemeOption; } export default class SparkLinePanel extends React.Component<ISparkLinePanel, {}> { render(): React.JSX.Element; } export {};