UNPKG

@gooddata/react-components

Version:

GoodData.UI - A powerful JavaScript library for building analytical applications

17 lines (16 loc) 737 B
/// <reference types="react" /> import ConfigurationPanelContent from "./ConfigurationPanelContent"; import { IAxisProperties } from "../../interfaces/AxisType"; export default class BaseChartConfigurationPanel extends ConfigurationPanelContent { protected renderCanvasSection(): JSX.Element; protected renderConfigurationPanel(): JSX.Element; protected getAxesConfiguration(type: string): any[]; protected getControlProperties(): { gridEnabled: any; axes: IAxisProperties[]; }; protected getBubbleClassNames(): string; protected isViewedBy(): boolean; protected getBaseChartAxisSection(axes: IAxisProperties[]): JSX.Element[]; protected renderMinMax(basePath: string): JSX.Element; }