Highcharts test tool

by oysteinmoseng

HTML

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

<div id="container"></div>

CSS

#container {
    min-width: 300px;
    max-width: 800px;
    height: 300px;
    margin: 1em auto;
}

JavaScript

Highcharts.chart('container', {
    chart: {
        type: 'column'
    },
    title: {
        text: 'Sample Chart'
    },
    xAxis: {
        categories: ['Apples', 'Bananas', 'Oranges'],
        labels: {
            style: {
                fontSize: '9px' // Set the desired font size here
            }
        }
    },
    series: [{
        name: 'Fruits',
        data: [1, 2, 3]
    }]
});