UNPKG

recharts

Version:
251 lines (250 loc) 9.48 kB
import { ComponentType } from 'react'; import { CurveType, Props as CurveProps } from '../shape/Curve'; import { ImplicitLabelListType } from '../component/LabelList'; import { ActiveDotType, ActiveShape, AnimationDuration, AnimationTiming, CartesianLayout, DataKey, DotType, LegendType, TickItem, TooltipType } from '../util/types'; import { BaseAxisWithScale } from '../state/selectors/axisSelectors'; import { AxisId } from '../state/cartesianAxisSlice'; import { ZIndexable } from '../zIndex/ZIndexLayer'; import { ChartData } from '../state/chartDataSlice'; export interface LinePointItem { readonly value: number; readonly payload?: any; /** * Line coordinates can have gaps in them. We have `connectNulls` prop that allows to connect those gaps anyway. * What it means is that some points can have `null` x or y coordinates. */ x: number | null; y: number | null; } /** * External props, intended for end users to fill in */ interface LineProps extends ZIndexable { /** * The dot is shown when user enter a line chart and this chart has tooltip. * If false set, no active dot will not be drawn. * If true set, active dot will be drawn which have the props calculated internally. * If object set, active dot will be drawn which have the props merged by the internal calculated props and the option. * If ReactElement set, the option can be the custom active dot element. * If set a function, the function will be called to render customized active dot. * * @defaultValue true * @example <Line dataKey="value" activeDot={false} /> * @example <Line dataKey="value" activeDot={{ stroke: 'red', strokeWidth: 2, r: 10 }} /> * @example <Line dataKey="value" activeDot={CustomizedActiveDot} /> * * @see {@link https://recharts.github.io/en-US/examples/SimpleLineChart/ A line chart with customized active dot} */ activeDot?: ActiveDotType; /** * @defaultValue true */ animateNewValues?: boolean; /** * Specifies when the animation should begin, the unit of this option is ms. * @defaultValue 0 */ animationBegin?: number; /** * Specifies the duration of animation, the unit of this option is ms. * @defaultValue 1500 */ animationDuration?: AnimationDuration; /** * The type of easing function. * @defaultValue ease */ animationEasing?: AnimationTiming; className?: string; /** * Whether to connect the line across null points. * @defaultValue false * * @see {@link https://recharts.github.io/en-US/examples/LineChartConnectNulls/ A lineChart connect nulls and a lineChart disconnect nulls} */ connectNulls?: boolean; data?: ChartData; /** * Decides how to extract the value of this Line from the data: * - `string`: the name of the field in the data object; * - `number`: the index of the field in the data; * - `function`: a function that receives the data object and returns the value of this Line. * * If undefined, it will reuse the dataKey of YAxis. */ dataKey?: DataKey<any>; /** * If false set, dots will not be drawn. * If true set, dots will be drawn which have the props calculated internally. * If object set, dots will be drawn which have the props merged by the internal calculated props and the option. * If ReactElement set, the option can be the custom dot element. * If set a function, the function will be called to render customized dot. * @defaultValue true * * @example <Line dataKey="value" dot={false} /> * @example <Line dataKey="value" dot={{ stroke: 'red', strokeWidth: 2 }} /> * @example <Line dataKey="value" dot={CustomizedDot} /> * * @see {@link https://recharts.github.io/en-US/examples/CustomizedDotLineChart/ A line chart with customized dot} */ dot?: DotType; /** * Hides the whole line when true. * Useful when toggling the visibility of the line in a chart, for example through a legend. * @defaultValue false */ hide?: boolean; /** * Unique identifier of this component. * Used as a HTML attribute `id`, and also to identify this element internally. * * If undefined, Recharts will generate a unique ID automatically. */ id?: string; /** * If set false, animation of line will be disabled. * If set "auto", the animation will be disabled in SSR and enabled in browser. * @defaultValue auto */ isAnimationActive?: boolean | 'auto'; /** * Renders one label for each data point. Options: * - `true`: renders default labels; * - `false`: no labels are rendered; * - `object`: the props of LabelList component; * - `ReactElement`: a custom label element; * - `function`: a render function of custom label. * * @defaultValue false * @example <Line dataKey="value" label /> * @example <Line dataKey="value" label={{ fill: 'red', fontSize: 20 }} /> * @example <Line dataKey="value" label={CustomizedLabel} /> * * @see {@link https://recharts.github.io/en-US/examples/CustomizedLabelLineChart/ A line chart with customized label} */ label?: ImplicitLabelListType; /** * The type of icon in legend. * If set to 'none', no legend item will be rendered. * @defaultValue line */ legendType?: LegendType; /** * If set a ReactElement, the shape of line can be customized. * If set a function, the function will be called to render customized shape. * * @example <Line dataKey="value" shape={CustomizedShapeComponent} /> * @example <Line dataKey="value" shape={renderShapeFunction} /> */ shape?: ActiveShape<CurveProps, SVGPathElement>; /** * The name of data. * This option will be used in tooltip and legend to represent this graphical item. * If no value was set to this option, the value of dataKey will be used alternatively. */ name?: string | number; /** * The customized event handler of animation end */ onAnimationEnd?: () => void; /** * The customized event handler of animation start */ onAnimationStart?: () => void; tooltipType?: TooltipType; /** * The interpolation type of curve. Allows custom interpolation function. * * @defaultValue linear * @link https://github.com/d3/d3-shape#curves * @see {@link https://recharts.github.io/en-US/examples/CardinalAreaChart/ An AreaChart which has two area with different interpolation.} */ type?: CurveType; /** * The unit of data. This option will be used in tooltip. */ unit?: string | number | null; /** * The id of XAxis which is corresponding to the data. Required when there are multiple XAxes. * @defaultValue 0 */ xAxisId?: AxisId; /** * The id of YAxis which is corresponding to the data. Required when there are multiple YAxes. * @defaultValue 0 */ yAxisId?: AxisId; /** * Z-Index of this component and its children. The higher the value, * the more on top it will be rendered. * Components with higher zIndex will appear in front of components with lower zIndex. * If undefined or 0, the content is rendered in the default layer without portals. * * @since 3.4 * @defaultValue 400 * @see {@link https://recharts.github.io/en-US/guide/zIndex/ Z-Index and layers guide} */ zIndex?: number; /** * The stroke color. If `"none"`, no line will be drawn. * * @defaultValue #3182bd */ stroke?: string; /** * The width of the stroke * * @defaultValue 1 */ strokeWidth?: string | number; /** * The pattern of dashes and gaps used to paint the line * * @example <Line strokeDasharray="4" /> * @example <Line strokeDasharray="4 1" /> * @example <Line strokeDasharray="4 1 2" /> */ strokeDasharray?: string | number; } /** * Because of naming conflict, we are forced to ignore certain (valid) SVG attributes. */ type LineSvgProps = Omit<CurveProps, 'points' | 'pathRef' | 'ref' | 'layout' | 'baseLine'>; export type Props = LineSvgProps & LineProps; export declare const defaultLineProps: { readonly activeDot: true; readonly animateNewValues: true; readonly animationBegin: 0; readonly animationDuration: 1500; readonly animationEasing: "ease"; readonly connectNulls: false; readonly dot: true; readonly fill: "#fff"; readonly hide: false; readonly isAnimationActive: "auto"; readonly label: false; readonly legendType: "line"; readonly stroke: "#3182bd"; readonly strokeWidth: 1; readonly xAxisId: 0; readonly yAxisId: 0; readonly zIndex: 400; readonly type: "linear"; }; export declare function computeLinePoints({ layout, xAxis, yAxis, xAxisTicks, yAxisTicks, dataKey, bandSize, displayedData, }: { layout: CartesianLayout; xAxis: BaseAxisWithScale; yAxis: BaseAxisWithScale; xAxisTicks: TickItem[]; yAxisTicks: TickItem[]; dataKey: Props['dataKey']; bandSize: number; displayedData: any[]; }): ReadonlyArray<LinePointItem>; /** * @provides LabelListContext * @provides ErrorBarContext * @consumes CartesianChartContext */ export declare const Line: ComponentType<Props>; export {};