Appearance
Sample: Marimekko
Live preview
Code
html
<div id="chart" style="width:800px;height:480px"></div>
<script type="module">
import { Insight } from 'https://unpkg.com/@chartbuddy.io/embed';
new Insight('#chart', {
persist: false,
chartData: {
chartType: 'mekko',
isDataTransposed: true,
seriesData: [
['', 'Seg A', 'Seg B', 'Seg C'],
['Series 1', 40, 30, 20],
['Series 2', 25, 35, 15],
],
title: { visible: true, text: 'Marimekko' },
subtitle: { visible: false, text: '' },
},
});
</script>