UNPKG

@apptane/react-ui-charts

Version:
5 lines (4 loc) 856 B
/// <reference types="react" /> import { DomainXValue, DomainYValue } from "../common/Types.js"; import { XYChartPanePropsBase, XYChartPanePropsBaseEx } from "./XYChart.types.js"; export declare function XYChartPane<X extends DomainXValue, Y extends DomainYValue, Data = void>({ children, componentId, theme, colorMode, height, width, computed, findDatum, setSlice, scaleX, scaleY, invertX, invertY, computedDomainX, computedDomainY, formatXTooltip, formatYTooltip, formatTooltipValue, header, headerHeight, extentX, extentY, axisYWidth, axisXTitle, axisYTitle, tooltipVisible, tooltipTotalVisible, tooltipOffset, emptyText, legendVisible, legendInteractive, defs, overlays, background, }: React.PropsWithChildren<XYChartPanePropsBase<X, Y, Data> & XYChartPanePropsBaseEx<X, Y, Data>>): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;