ElementStacks

HTML

<script src="http://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 400px"></div>

JavaScript

var chart = new Highcharts.Chart({
                    chart: {
                        renderTo: "container",
                        defaultSeriesType: 'bar'
                    },
                    title: {
                        text: null
                    },
                    xAxis: {
                        labels:
                        {
                            enabled: false
                        }
                    },
                    yAxis: {
                        min: 0,
                        gridLineWidth: 0,
                        title: {
                            text: ''
                        },
                        labels:
                        {
                            enabled: false
                        }
                    },
                    tooltip: {
                        formatter: function () {
                            return '';
                        }
                    },
                    plotOptions: {
                        bar: {
                            dataLabels: {
                                enabled: true
                            },
                            pointWidth: 35,
                            color: '#D9CDC1'
                        }
                    },
                    legend: {
                        enabled: false
                    },
                    credits: {
                        enabled: false
                    },
                    series: [{
                        name: 'Year 1800',
                        data: [107]
                    }]
                });