Renders a seating chart on a webpage
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: 'smallTheatreWithGAEvent',
popoverInfo: (o) => {
return o.status
}
}).render();
</script>