UNPKG

react-native-ballast-charts

Version:

High-performance interactive charts for React Native with advanced gap handling and financial data visualization

21 lines 1.38 kB
/** * React Native Simple Charts Library * Main package exports */ export { Chart as default, Chart } from './components/Chart'; export { LineRenderer } from './components/LineRenderer'; export { AxisRenderer } from './components/AxisRenderer'; export { IndicatorRenderer } from './components/IndicatorRenderer'; export { FillRenderer } from './components/FillRenderer'; export { DragLine } from './components/DragLine'; export { Tooltip } from './components/Tooltip'; export { useChartDimensions } from './hooks/useChartDimensions'; export { useDataScaling } from './hooks/useDataScaling'; export { useInterpolation } from './hooks/useInterpolation'; export { useGestureHandling } from './hooks/useGestureHandling'; export type { ChartProps, ChartData, LineStyle, FillStyle, AxisConfig, VerticalIndicator, InteractionConfig, TooltipConfig, GapConfig, ScaledPoint, Range, Rectangle, Padding, UseChartDimensionsReturn, UseDataScalingReturn, UseGestureHandlingReturn, UseInterpolationReturn } from './utils/types'; export { generatePath, generateFillPath, clamp, clampToChartArea } from './utils/pathGeneration'; export { detectGaps, calculateExpectedInterval } from './utils/gapDetection'; export { binarySearch, validateData, validateDimensions } from './utils/validation'; export { DEFAULT_STYLES, PERFORMANCE_CONSTANTS } from './utils/types'; //# sourceMappingURL=index.d.ts.map