Create stunning, interactive charts with our modern web component library. Lightning-fast performance meets elegant design.
Install and start creating beautiful charts with just a few lines of code.
via CDN:
<script src="https://cdn.jsdelivr.net/gh/ja1984/another-chart/dist/another-chart.js" type="module"></script>
Create your first chart:
<another-chart labels="January, February, March, April, May, June, July" legend="top" begin-at-zero="true">
<ac-data-set data="[100, 40, 10, 15, 10, 25, 30]" color="#fff">
<ac-bar-chart color="rgba(255,255,255, .1)"></ac-bar-chart>
<ac-line-chart></ac-line-chart>
</ac-data-set>
<ac-tooltip position="mouse"></ac-tooltip>
<ac-legend position="top"></ac-legend>
</another-chart>