Chartly is a powerful, flexible charting library that makes it easy to create beautiful, interactive data visualizations for your web applications.
Support for area, bar, line, pie, radar, and radial charts with extensive customization options.
Built specifically for React with TypeScript support and modern hooks-based API.
Extensive theming system with CSS variables and custom styling capabilities.
Get started with Chartly by installing it via npm or yarn.
npm install chartly @chartly/react
yarn add chartly @chartly/react
Create your first chart in minutes with this simple example.
import { ChartContainer, ChartConfig } from "@chartly/react";
import { AreaChart, Area, XAxis, YAxis } from "recharts";
const data = [
{ month: "Jan", revenue: 4000 },
{ month: "Feb", revenue: 3000 },
{ month: "Mar", revenue: 5000 },
];
const config = {
revenue: {
label: "Revenue",
color: "var(--chart-1)",
},
} satisfies ChartConfig;
export function MyChart() {
return (
<ChartContainer config={config} className="h-[300px]">
<AreaChart data={data}>
<XAxis dataKey="month" />
<YAxis />
<Area
dataKey="revenue"
stroke="var(--color-revenue)"
fill="var(--color-revenue)"
/>
</AreaChart>
</ChartContainer>
);
}
Explore our collection of chart examples and templates.
Documentation for area charts is coming soon. Check back later for detailed guides and examples.
Documentation for bar charts is coming soon. Check back later for detailed guides and examples.
Documentation for line charts is coming soon. Check back later for detailed guides and examples.
Documentation for pie charts is coming soon. Check back later for detailed guides and examples.
Documentation for radar charts is coming soon. Check back later for detailed guides and examples.
Documentation for radial charts is coming soon. Check back later for detailed guides and examples.
Documentation for chartcontainer is coming soon. Check back later for detailed guides and examples.
Documentation for charttooltip is coming soon. Check back later for detailed guides and examples.
Documentation for chartlegend is coming soon. Check back later for detailed guides and examples.
Documentation for chartconfig is coming soon. Check back later for detailed guides and examples.
Documentation for authentication is coming soon. Check back later for detailed guides and examples.
Documentation for endpoints is coming soon. Check back later for detailed guides and examples.
Documentation for data formats is coming soon. Check back later for detailed guides and examples.
Documentation for rate limits is coming soon. Check back later for detailed guides and examples.
Documentation for team setup is coming soon. Check back later for detailed guides and examples.
Documentation for permissions is coming soon. Check back later for detailed guides and examples.
Documentation for workspaces is coming soon. Check back later for detailed guides and examples.
Documentation for themes is coming soon. Check back later for detailed guides and examples.
Documentation for colors is coming soon. Check back later for detailed guides and examples.
Documentation for custom styling is coming soon. Check back later for detailed guides and examples.
Documentation for animations is coming soon. Check back later for detailed guides and examples.
Documentation for environment is coming soon. Check back later for detailed guides and examples.
Documentation for deployment is coming soon. Check back later for detailed guides and examples.
Documentation for performance is coming soon. Check back later for detailed guides and examples.
Documentation for troubleshooting is coming soon. Check back later for detailed guides and examples.