Welcome to Chartly

Chartly is a powerful, flexible charting library that makes it easy to create beautiful, interactive data visualizations for your web applications.

Rich Chart Types

Support for area, bar, line, pie, radar, and radial charts with extensive customization options.

React Ready

Built specifically for React with TypeScript support and modern hooks-based API.

Highly Customizable

Extensive theming system with CSS variables and custom styling capabilities.

Installation

Get started with Chartly by installing it via npm or yarn.

Using npm

npm install chartly @chartly/react

Using yarn

yarn add chartly @chartly/react

Quick Start

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>
  );
}

Examples

Explore our collection of chart examples and templates.

Chart Gallery
Browse all available chart types with live examples
CodeSandbox Templates
Ready-to-use templates in CodeSandbox

Area Charts

Documentation for area charts is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.

Bar Charts

Documentation for bar charts is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.

Line Charts

Documentation for line charts is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.

Pie Charts

Documentation for pie charts is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.

Radar Charts

Documentation for radar charts is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.

Radial Charts

Documentation for radial charts is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.

ChartContainer

Documentation for chartcontainer is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.

ChartTooltip

Documentation for charttooltip is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.

ChartLegend

Documentation for chartlegend is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.

ChartConfig

Documentation for chartconfig is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.

Authentication

Documentation for authentication is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.

Endpoints

Documentation for endpoints is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.

Data Formats

Documentation for data formats is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.

Rate Limits

Documentation for rate limits is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.

Team Setup

Documentation for team setup is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.

Permissions

Documentation for permissions is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.

Sharing Charts

Documentation for sharing charts is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.

Workspaces

Documentation for workspaces is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.

Themes

Documentation for themes is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.

Colors

Documentation for colors is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.

Custom Styling

Documentation for custom styling is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.

Animations

Documentation for animations is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.

Environment

Documentation for environment is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.

Deployment

Documentation for deployment is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.

Performance

Documentation for performance is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.

Troubleshooting

Documentation for troubleshooting is coming soon. Check back later for detailed guides and examples.

Coming Soon
We're working on comprehensive documentation for this section. In the meantime, check out our examples or reach out to our team for help.