Appearance
Sample: Pie
Live preview
Code
html
<div id="chart" style="width:800px;height:420px"></div>
<script type="module">
import { Insight } from 'https://unpkg.com/@chartbuddy.io/embed';
new Insight('#chart', {
persist: false,
chartData: {
chartType: 'pie',
seriesData: [
['Category', 'Value'],
['North', 45],
['South', 30],
['West', 25],
],
title: { visible: true, text: 'Share' },
subtitle: { visible: false, text: '' },
},
});
</script>