Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ngyewch/chartjs-v4-webcomponent

Simple web component for displaying Chart.js v4 charts
https://github.com/ngyewch/chartjs-v4-webcomponent

chart chartjs webcomponent

Last synced: 3 days ago
JSON representation

Simple web component for displaying Chart.js v4 charts

Awesome Lists containing this project

README

        

[![npm](https://img.shields.io/npm/v/@ngyewch/chartjs-v4-webcomponent)](https://www.npmjs.com/package/@ngyewch/chartjs-v4-webcomponent)
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/ngyewch/chartjs-v4-webcomponent/CI.yml)
![GitHub last commit](https://img.shields.io/github/last-commit/ngyewch/chartjs-v4-webcomponent)

# chartjs-v4-webcomponent

Simple web component for displaying [Chart.js](https://www.chartjs.org/) v4 charts.

## Usage

### Import

Script tag:
```

```

### Markup

```


{
"type": "bar",
"data": {
"labels": ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul"],
"datasets": [
{
"label": "My First Dataset",
"data": [65, 59, 80, 81, 56, 55, 40]
}
]
},
"options": {
"maintainAspectRatio": false,
"scales": {
"y": {
"beginAtZero": true
}
}
}
}


```