Ashwin Patil
Ashwin Patil

Reputation: 1357

Highchart - Min max and Mean chart

enter image description here

Is it possible to create min max and mean chart in highchart as shown in above screenshot? I have tried OHLC but it's not same. So let me know if we can customize?

Upvotes: 0

Views: 342

Answers (1)

Sebastian Bochan
Sebastian Bochan

Reputation: 37588

Try to use boxplot, with adapted data:

http://jsfiddle.net/G54B6/1/

series: [{
        name: 'Observations',
        data: [
            [760, 801, 801, 801, 965],
        ],
        tooltip: {
            headerFormat: '<em>Experiment No {point.key}</em><br/>'
        }
    }]

Upvotes: 1

Related Questions