score:3

you can use the column range chart type. see this official demonstration.

here is a sample of your apples (jsfiddle):

$('#container').highcharts({

    chart: {
        type: 'columnrange'
    },

    xaxis: {
        categories: ['apples']
    },

    yaxis: [{
        min: 0,
        max: 100
    }],

    series: [{
        data: [
            [25, 75],
        ]
    }]

});

Related Query

More Query from same tag