JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>

<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>

JavaScript

$(function () {
    $('#container').highcharts({
        chart: {
            type: 'column'
        },
        title: {
            text: 'Stacked column chart'
        },
        xAxis: {
            categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas']
        },
        yAxis: {
            min: 0,
            title: {
                text: 'Total fruit consumption'
            }
        },
        tooltip: {
            pointFormat: '<span style="color:{series.color}">{series.name}</span>: <b>{point.y}</b> ({point.percentage:.0f}%)<br/>',
            shared: true
        },
        plotOptions: {
            column: {
                stacking: 'percent'
            }
        },
        series: [{
            "name":"DIFS - GEMAS - GAECS - Eng. Man. Eq. Convencionais",
            "data":[96]
        },{
            "name":"DIFS - GEMAS - GAECS - Eng. Man. Eq. Convencionais",
            "data":[95.51]
        },{
            "name":"DIFS - GEMAS - GAECS - Eng. Man. Eq. Convencionais",
            "data":[89.7]
        },{
            "name":"DIFS - GEMAS - GAECS - Eng. Man. Eq. Convencionais",
            "data":[97.05]
        },{
            "name":"DIFS - GEMAS - GAECS - Eng. Man. Eq. Convencionais",
            "data":[86.86]
        },{
            "name":"DIFS - GEMAS - GAECS - Eng. Man. Eq. Convencionais",
            "data":[90]
        },{
            "name":"DIFS - GEMAS - GAECS - Eng. Man. Eq. Convencionais",
            "data":[47.35]
        }]
    });
});