Reputation: 1357
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
Reputation: 37588
Try to use boxplot, with adapted data:
series: [{
name: 'Observations',
data: [
[760, 801, 801, 801, 965],
],
tooltip: {
headerFormat: '<em>Experiment No {point.key}</em><br/>'
}
}]
Upvotes: 1