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: 'smallTheatreEvent2',
pricing: {
prices: [
{ category: 'Standing', price: 35 },
{ category: 'Ground Floor', price: 35 },
],
priceFormatter: (p) => "€ " + p,
allFeesIncluded: true
}
}).render();
</script>