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

Line 25: Line 25:
 
   series: [{
 
   series: [{
 
     name: 'Arithmetic Mean',
 
     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]
+
     data: [
 +
      [8423.75, 0],
 +
      [5121.75, 0.048828125],
 +
      [7704.25, 0.09765625],
 +
      [7962.75, 0.1953125],
 +
      [8480.5, 0.390625],
 +
      [8680.5, 0.78125],
 +
      [9567.5, 1.5625],
 +
      [11912.25, 3.125],
 +
      [17065.5, 6.25],
 +
      [20430.25, 12.5],
 +
      [27822.75, 25],
 +
      [34616.25, 50.00]
 +
      ]
 
   }]
 
   }]
  
 
});
 
});

Revision as of 03:59, 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, 0],
     [5121.75, 0.048828125],
     [7704.25, 0.09765625],
     [7962.75, 0.1953125],
     [8480.5, 0.390625],
     [8680.5, 0.78125],
     [9567.5, 1.5625],
     [11912.25, 3.125],
     [17065.5, 6.25],
     [20430.25, 12.5],
     [27822.75, 25],
     [34616.25, 50.00]
     ]
 }]

});