Changement Highcharts couleur de Série

EDIT:
Alors maintenant, j'ai un tableau avec toutes mes données poussé à l'extrême droite, MAIS j'ai des étiquettes de différentes couleurs pour les séries que je veux montrer, mais pas de données?? Mis à jour mon code

Original post:
J'ai un travail highchart ici http://opensourcesurf.com/chart.html . Le problème est quand je l'ai essayer et changer la couleur d'un individu de l'ensemble de données, ils ont tous changer. Comment pourrais-je changer ces paramètres étant donné mon code? Merci à l'avance!

code:

    var options1 = {
    chart: {
        renderTo: 'container1',
        type: 'area'

        },
    xAxis: {
                type: 'datetime'

    },

    series: [{
        name: 'Swell Period',
        color: '#0066FF',
        data: 'newSeriesData',
    },
    {   name: ' Maximum Breaking Wave Height',
        color: '#ffffff',
        data: 'newSeriesData',
    },
    {   name: 'Swell Height',
        color: '#123456',
        data: 'newSeriesData',
    }],
};

var drawChart = function(data, name, color) {



 var newSeriesData = {
    name: name,
    data: data
 };

    //Add the new data to the series array
    options1.series.push(newSeriesData);

    //If you want to remove old series data, you can do that here too

    //Render the chart
    var chart = new Highcharts.Chart(options1);



};
$.getJSON('decode.php', function(data){
    drawChart(data, 'Swell Height');
}); 

$.getJSON('decode2.php', function(data){
    drawChart(data, ' Maximum Breaking Wave Height');
});

$.getJSON('decode3.php', function(data){
    drawChart(data, 'Swell Period');
});
InformationsquelleAutor MacD | 2013-11-08