Pricing object with price formatter

by seatsio

HTML

<script src="https://cdn.seatsio.net/chart.js"></script>
<div id="chart"></div>

CSS

#chart {
	height: 500px;
}

JavaScript

var chart = new seatsio.SeatingChart({
    divId: "chart",
    workspaceKey: "publicDemoKey",
    event: "smallTheatreEvent",				
    pricing: {
        priceFormatter: function(price) {
            return '$' + price;
        },
        prices: [
            {'category': 1, 'price': 30},
            {'category': 2, 'price': 40},
            {'category': 3, 'price': 50}
    ]}
}).render();