Difference between revisions of "Team:ColumbiaNYC/Resources/JS:plot1dat"

Line 25: Line 25:
 
   series: [{
 
   series: [{
 
     name: 'Arithmetic Mean',
 
     name: 'Arithmetic Mean',
     data: [34616.25, 27822.75, 20430.25, 17065.5, 11912.25, 9567.5, 8680.5, 8480.5, 7962.75, 7704.25, 5121.75, 8423.75]
+
     data: [8423.75, 5121.75, 7704.25, 7962.75, 8480.5, 8680.5, 9567.5, 11912.25, 17065.5, 20430.25, 27822.75, 34616.25]
 
   }]
 
   }]
  
 
});
 
});

Revision as of 03:52, 17 July 2017

Highcharts.chart('plot1', {

 title: {
   text: 'Fluorescein Standard Curve'
 },
 yAxis: {
   title: {
     text: 'Fluorescence'
   }
 },
 xAxis: {
   tickInterval: 5,
   title: {
     text: 'Fluorescein Concentration (uM)'
   }
 },
 plotOptions: {
   series: {
     pointStart: 0
   }
 },
 series: [{
   name: 'Arithmetic Mean',
   data: [8423.75, 5121.75, 7704.25, 7962.75, 8480.5, 8680.5, 9567.5, 11912.25, 17065.5, 20430.25, 27822.75, 34616.25]
 }]

});