/*! ========================================================= * Argon Dashboard Chakra PRO - v1.0.0 ========================================================= * Product Page: https://www.creative-tim.com/product/argon-dashboard-chakra-pro * Copyright 2022 Creative Tim (https://www.creative-tim.com/) * Designed and Coded by Simmmple & Creative Tim ========================================================= * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. */ // Chakra imports import { Box, Grid, Text, useColorModeValue } from "@chakra-ui/react"; // Custom components import Card from "components/Card/Card"; import CardBody from "components/Card/CardBody"; import CardHeader from "components/Card/CardHeader"; import BarChart from "components/Charts/BarChart"; import BubbleChart from "components/Charts/BubbleChart"; import DonutChart from "components/Charts/DonutChart"; import LineBarChart from "components/Charts/LineBarChart"; import LineChart from "components/Charts/LineChart"; import PieChart from "components/Charts/PieChart"; import PolarChart from "components/Charts/PolarChart"; import RadarChart from "components/Charts/RadarChart"; // Assets import React from "react"; import { barChartDataCharts1, barChartDataCharts2, barChartOptionsCharts1, barChartOptionsCharts2, bubbleChartData, bubbleChartOptions, donutChartDataCharts1, donutChartOptionsCharts1, lineBarChartData, lineBarChartOptions, lineChartDataCharts1, lineChartDataCharts2, lineChartOptionsCharts1, lineChartOptionsCharts2, pieChartDataCharts1, pieChartOptionsCharts1, polarChartDataCharts, polarChartOptionsCharts, radarChartDataCharts, radarChartOptionsCharts, } from "variables/charts"; function Charts() { const textColor = useColorModeValue("gray.700", "white"); return ( Line chart Line chart with gradient Bar chart Bar chart horizontal Mixed chart Bubble chart Donut chart Pie chart Radar chart Polar chart ); } export default Charts;