mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-08-15 06:19:24 +02:00
18 lines
391 B
TypeScript
18 lines
391 B
TypeScript
import type { DiagramMetadata } from '../types.js';
|
|
|
|
export default {
|
|
id: 'pie',
|
|
name: 'Pie Chart',
|
|
description: 'Visualize data as proportional segments of a circle',
|
|
examples: [
|
|
{
|
|
title: 'Basic Pie Chart',
|
|
isDefault: true,
|
|
code: `pie title Pets adopted by volunteers
|
|
"Dogs" : 386
|
|
"Cats" : 85
|
|
"Rats" : 15`,
|
|
},
|
|
],
|
|
} satisfies DiagramMetadata;
|