Create a seating chart with interactive elements

by seatsio

HTML

<div id="chart"></div>
<script src="https://cdn.seatsio.net/chart.js"></script>
<script>
    new seatsio.SeatingChart({
        divId: 'chart',
        publicKey: 'publicDemoKey',
        event: 'fullExampleWithoutSectionsEvent', 
        onObjectSelected: (o) => console.log(o)
    }).render();
</script>