test

Testing

by James Brown

HTML

<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>

<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>

JavaScript

$(function ()
        {
            $('#container').highcharts({
                chart: {
                    type: 'scatter',
                    backgroundcolor: 'null',
                    plotBackgroundImage:'http://www.seti.net/SkyMap.jpg',
                    zoomType: 'xy'
                },
                title: {
                    text: 'Hits Collected'
                },
                subtitle: {
                    text: 'up to date'
                },
                xAxis: {
                   
                    title: {
                        enabled: true,
                        text: 'Right Ascension (hrs)'
                    },
                    startOnTick: true,
                    endOnTick: true,
                    showLastLabel: true
                },
                yAxis: {
                    max:90,
                    min:-90,
                  endOnTick: false,
                    startOnTick:false,
                     gridLineWidth: 0,
                    tickInterval:20,
                    title: {
                        text: 'Declination (deg)'
                    }
                    
                 
                },
                legend: {
                    layout: 'vertical',
                    align: 'left',
                    verticalAlign: 'top',
                    x: 100,
                    y: 70,
                    floating: true,
                    backgroundColor: '#FFFFFF',
                    borderWidth: 1
                },
                plotOptions: {
                    scatter: {
                        marker: {
                            radius: 3,
                            states: {
                                hover: {
                                    enabled: true,
                                    lineColor: 'rgb(100,100,100)'
                                }
                            }
                        },
                        states: {
               ...