JSFiddle - React, Tailwind, and code Playground

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: 210px; height: 400px; margin: 0 auto"></div>

JavaScript

$(function () {
    $('#container').highcharts({
        chart: {
            zoomType: 'xy'
        },
        title: {
            text: 'График по продажам'
        },
        subtitle: {
            text: ''
        },
        xAxis: [{
            categories: ['Январь', 'Февраль', 'Март', 'Апрель', 'Май', 'Июнь',
                'Июль'],
            crosshair: true
        }],
        yAxis: [{ // Primary yAxis
            labels: {
                format: '{value} руб.',
                style: {
                    color: Highcharts.getOptions().colors[1]
                }
            },
            title: {
                text: 'Кількість фішек',
                style: {
                    color: Highcharts.getOptions().colors[1]
                }
            }
        }, { // Secondary yAxis
            title: {
                text: 'Кількість фішек всього',
                style: {
                    color: Highcharts.getOptions().colors[0]
                }
            },
            labels: {
                format: '{value} руб',
                style: {
                    color: Highcharts.getOptions().colors[0]
                }
            },
            opposite: true
        }],
        tooltip: {
            shared: true
        },
        legend: {
            layout: 'vertical',
            align: 'left',
            x: 120,
            verticalAlign: 'top',
            y: 100,
            floating: true,
            backgroundColor: (Highcharts.theme && Highcharts.theme.legendBackgroundColor) || '#FFFFFF'
        },
        series: [{
            name: 'Фішки',
            type: 'column',
            yAxis: 1,
            data: [15, 22, 20, 36, 55, 44, 48],
            tooltip: {
                valueSuffix: ' руб.'
            }

        }, {
            name: 'Всього',
            type: 'spline',
            data: [15, 22, 20, 36, 55, 44, 48],
            tooltip: {
                valueSuffix: 'руб'
            }
        }]
    });
});