Embed 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: 'smallTheatreEvent2',
pricing: [
{ category: 'Ground Floor', price: 20},
{ category: 'Balcony', price: 20},
]
}).render();
</script>