Preview: http://dashboards.webkom.co/react/airframe
This commit is contained in:
Tomasz Owczarczyk
2019-08-15 00:54:44 +02:00
parent f975443095
commit 37092d1d6c
626 changed files with 56691 additions and 0 deletions

62
app/components/recharts.js Executable file
View File

@@ -0,0 +1,62 @@
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';