UNPKG

victory-native

Version:

A charting library for React Native with a focus on performance and customization.

5 lines (4 loc) 529 B
import React from "react"; import type { NumericalFields, YAxisProps } from "../../types"; export { YAxisDefaults } from "../utils/axisDefaults"; export declare const YAxis: <RawData extends Record<string, unknown>, YK extends keyof NumericalFields<RawData>, Label = RawData[YK]>({ xScale, yScale, yTicksNormalized, axisSide, labelPosition, labelOffset, labelColor, lineWidth, lineColor, font, title, labelRenderer, formatYLabel, linePathEffect, chartBounds, orientation, }: YAxisProps<RawData, YK, Label>) => React.JSX.Element;