Legend chart Scatter

by kzoon

HTML

<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/highcharts-more.js"></script>
<div id="container" style="width: 600px; height: 50px; margin: 0 auto;"></div>

JavaScript

$(function () {
    $('#container').highcharts({

        chart: {
            type: 'scatter',
            spacing: [0, 0, 0, 0],
            backgroundColor: '#FCFFC5'
        },
        credits: {
            enabled: false
        },
        title: {
            text: ''
        },
        /*
        tooltip: {
            enabled: false
        },
*/
        legend: {
            margin: 0,
            align: 'center',
            verticalAlign: 'top'
        },

        xAxis: {
            min: 0,
            max: 1,
            lineWidth: 0,
            tickLength: 0,
            labels: {
                enabled: false
            },
            title: {
                text: ''
            }
        },
        yAxis: {
            min: 0,
            max: 1,
            lineWidth: 0,
            tickLength: 0,
            gridLineWidth: 0,
            labels: {
                enabled: false
            },
            title: {
                text: ''
            }
        },

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

    });
});