-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
github-actions[bot] edited this page Jul 17, 2026
·
1 revision
```bash npm install lombok-charts ```
```bash pnpm add lombok-charts ```
```bash yarn add lombok-charts ```
```javascript import { chart } from 'lombok-charts';
chart('#app', { data: [ { label: 'Q1', value: 120 }, { label: 'Q2', value: 200 }, { label: 'Q3', value: 150 }, { label: 'Q4', value: 280 }, ], mark: 'bar', title: 'Quarterly Revenue', }); ```
```html
<script src="https://cdn.jsdelivr.net/npm/lombok-charts/dist/lombok-charts.umd.min.js"></script> <script> LombokCharts.chart('#app', { data: [{ label: 'A', value: 10 }], mark: 'bar' }); </script>```