source: node_modules/recharts/es6/chart/LineChart.js

Last change on this file was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 686 bytes
RevLine 
[a762898]1import * as React from 'react';
2import { forwardRef } from 'react';
3import { arrayTooltipSearcher } from '../state/optionsSlice';
4import { CartesianChart } from './CartesianChart';
5var allowedTooltipTypes = ['axis'];
6
7/**
8 * @consumes ResponsiveContainerContext
9 * @provides CartesianViewBoxContext
10 * @provides CartesianChartContext
11 */
12export var LineChart = /*#__PURE__*/forwardRef((props, ref) => {
13 return /*#__PURE__*/React.createElement(CartesianChart, {
14 chartName: "LineChart",
15 defaultTooltipEventType: "axis",
16 validateTooltipEventTypes: allowedTooltipTypes,
17 tooltipPayloadSearcher: arrayTooltipSearcher,
18 categoricalChartProps: props,
19 ref: ref
20 });
21});
Note: See TracBrowser for help on using the repository browser.