Files
Airframe-React/app/components/recharts.js
2019-08-15 00:54:44 +02:00

62 lines
1.3 KiB
JavaScript
Executable File

import { CartesianGrid } from './Recharts/CartesianGrid';
import { PolarGrid } from './Recharts/PolarGrid';
import { XAxis } from './Recharts/XAxis';
import { YAxis } from './Recharts/YAxis';
import { ZAxis } from './Recharts/ZAxis';
import { PolarRadiusAxis } from './Recharts/PolarRadiusAxis';
import { PolarAngleAxis } from './Recharts/PolarAngleAxis';
import { ValueLabel } from './Recharts/ValueLabel';
import { DefAreaValueColor } from './Recharts/DefAreaValueColor';
import { PieValueLabel } from './Recharts/PieValueLabel';
import { Tooltip } from './Recharts/Tooltip';
import { Legend } from './Recharts/Legend';
export {
CartesianGrid,
PolarGrid,
DefAreaValueColor,
ValueLabel,
Legend,
XAxis,
YAxis,
ZAxis,
PolarRadiusAxis,
PolarAngleAxis,
PieValueLabel,
Tooltip
};
export {
Area,
AreaChart,
Bar,
BarChart,
CartesianAxis,
Cell,
ComposedChart,
Cross,
Curve,
Dot,
ErrorBar,
Label,
LabelList,
Line,
LineChart,
Pie,
PieChart,
Polygon,
Radar,
RadarChart,
RadialBar,
RadialBarChart,
Rectangle,
ReferenceArea,
ReferenceDot,
ReferenceLine,
ResponsiveContainer,
Scatter,
ScatterChart,
Sector,
Text,
Treemap
} from 'recharts';