Highcharts bar chart counterfeit products

by Kieran Dang

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<div id="container" style="min-width: 310px; max-width: 800px; height: 400px; margin: 0 auto"></div>

JavaScript

$(function () {
    $('#container').highcharts({
        chart: {
            type: 'bar'
        },
        title: {
            text: 'Bar chart'
        },
        xAxis: {
            categories: ['Nước hoa', 'Quần áo, giày dép', 'Đồng hồ', 'Bia, rượu', 'Đồ điện tử', 'Linh kiện xe hơi', 'Đồ chơi trẻ em', 'Dược phẩm', 'Thực phẩm']
        },
        yAxis: {
            min: 0,
            title: {
                text: '',
                align: 'high'
            },
            labels: {
                overflow: 'justify'
            }
        },
        tooltip: {
            valueSuffix: ' %'
        },
        plotOptions: {
            bar: {
                dataLabels: {
                    enabled: true,
                    format: "{y} %"
                },

            }
        },
        credits: {
            enabled: false
        },
        series: [{
            data: [60, 57, 57, 35, 30, 26, 23, 18, 8]
        }]
    });
});