Sample analytics dashboard with various chart types and visualizations
<BarChart data={data} dataKeys={["key1", "key2"]} xAxisDataKey="category" showGrid={true} showLegend={true} showTooltip={true} barSize={20} layout="horizontal" height={300} animationVariant="fade-up" animationDelay={0} />
<LineChart data={data} dataKeys={["key1", "key2"]} xAxisDataKey="category" showGrid={true} showLegend={true} showTooltip={true} strokeWidth={2} curved={true} height={300} animationVariant="fade-up" animationDelay={0} />
<AreaChart data={data} dataKeys={["key1", "key2"]} xAxisDataKey="category" showGrid={true} showLegend={true} showTooltip={true} strokeWidth={2} curved={true} stacked={false} height={300} animationVariant="fade-up" animationDelay={0} />
<PieChart data={data} nameKey="name" dataKey="value" showLegend={true} showTooltip={true} innerRadius={0} outerRadius={80} paddingAngle={0} labelLine={true} height={300} animationVariant="zoom-in" animationDelay={0} />