I am trying to create bell curve using django and highcharts but its not looking like i expected,
Here is the image what exactly i want
currently I'm working on this
var data = [ 2.7, 2.7, 3, 3.4, 3.1, 2.3, 3, 2.5, 2.6, 3, 2.6, 2.3,
2.7, 3, 2.9, 2.9, 2.5, 2.8, 3.3, 2.7, 3, 2.9, 3, 3, 2.5, 2.9, 2.5, 3.6,
3.2, 2.7, 3, 2.5, 2.8, 3.2, 3, 3.8];
Highcharts.chart('container', {
title: {
    text: 'Bell curve'
},
xAxis: [{
    title: { text: 'Data' }
}, {
    title: { text: 'Bell curve' },
    opposite: true
}],
yAxis: [{
    title: { text: 'Data' }
}, {
    title: { text: 'Bell curve' },
    opposite: true
}],
series: [{
    name: 'Bell curve',
    type: 'bellcurve',
    xAxis: 1,
    yAxis: 1,
    baseSeries: 1,
    zIndex: -1
}, {
    name: 'Data',
    type: 'scatter',
    data: data,
    marker: {
        radius: 1.5
    }
   }]
 });
the problem which I'm facing are following:
1. How to remove scatter 
2. How to display average point on curve.
3. How to display gradient like given in image.
 
    