Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sourabhbagrecha/52a65d6c9e63bcfa5b5a60a3458a7036 to your computer and use it in GitHub Desktop.
Save sourabhbagrecha/52a65d6c9e63bcfa5b5a60a3458a7036 to your computer and use it in GitHub Desktop.
import Chart from "react-google-charts";
const ModeAnalytics = ({ data }) => {
const chartData = [["Mode", "Amount"]];
data.forEach(({ mode, amount }) => {
chartData.push([mode, amount]);
});
return <>
<h3>Mode Analytics</h3>
<Chart
chartType="PieChart"
data={chartData}
width={"100%"}
height={"400px"}
/>
</>
}
export default ModeAnalytics;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment