UNPKG

@apptane/react-ui-charts

Version:
23 lines (22 loc) 1.02 kB
import { XYBarChartPane } from "./XYBarChartPane.js"; import { XYBubbleChartPane } from "./XYBubbleChartPane.js"; import { XYChartProps } from "./XYChart.types.js"; import { XYLineChartPane } from "./XYLineChartPane.js"; import { XYScatterChartPane } from "./XYScatterChartPane.js"; /** * `XYChart` component — presents metrics on XY plane that are based * in continuous domain (time and numeric) or ordinal domain. * Metrics can be visualized as line/area, bar, or bubble series. * Supports one or more panes sharing the same primary X domain, but * having independent Y, and optionally Z, ranges and visualization * properties. */ declare function XYChart(props: XYChartProps): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element; declare namespace XYChart { var Line: typeof XYLineChartPane; var Bar: typeof XYBarChartPane; var Bubble: typeof XYBubbleChartPane; var Scatter: typeof XYScatterChartPane; var displayName: string; } export default XYChart;