import React from "react"; import { View } from "react-native"; import { BarChart } from "react-native-gifted-charts"; const UserChart = () => { const barColor = "#05a8b6" const data = [ { value: 290, // Direct value of the bar frontColor: barColor, // Color of the bar label: "M", }, { value: 190, frontColor: barColor, label: "Tu", }, { value: 210, frontColor: barColor, label: "W", }, { value: 410, frontColor: barColor, label: "Th", }, { value: 220, frontColor: barColor, label: "F", }, { value: 160, frontColor: barColor, label: "Sa", }, { value: 160, frontColor: barColor, label: "Su", }, ]; return ( ); }; export default UserChart;