A CSS-based chart plugin for Eleventy. Renders charts as pure HTML/CSS.
npm install eleventy-plugin-uncharted// eleventy.config.js
import uncharted from 'eleventy-plugin-uncharted';
export default function(eleventyConfig) {
eleventyConfig.addPlugin(uncharted);
}Define a chart in frontmatter and render with the shortcode:
---
charts:
sales:
type: stacked-bar
title: Quarterly Sales
file: charts/sales.csv
---
{% chart "sales" %}See the documentation for configuration options, styling, animations, and more.