Team:Groningen/Graphs/AccumulationFactor
From 2009.igem.org
(Difference between revisions)
m |
m |
||
Line 1: | Line 1: | ||
{ | { | ||
script: "var data = document.getElementById('accumulationFactorData').data;\ | script: "var data = document.getElementById('accumulationFactorData').data;\ | ||
- | var d=[{title:'As(III)<sub>in</sub>T',data:[],args:{plot:' | + | var d=[{title:'As(III)<sub>in</sub>T',data:[],args:{plot:'in',{{:Team:Groningen/Styles/As(III)}}}},\ |
- | {title:'As(III)<sub>in</sub>T | + | {title:'As(III)<sub>in</sub>T (pro=0)',data:[],args:{plot:'in',{{:Team:Groningen/Styles/As(III)}}}}];\ |
d[1].args.stroke.style = 'Dash';\ | d[1].args.stroke.style = 'Dash';\ | ||
- | if (!data) data = {AsT:[0], AsinT:[0], | + | if (!data) data = {AsT:[0], AsinT:[0], AsinTnopro:[0]};\ |
for(var i=0; i<data.AsT.length; i++) {\ | for(var i=0; i<data.AsT.length; i++) {\ | ||
var f=data.AsT[i]*1e6;\ | var f=data.AsT[i]*1e6;\ | ||
d[0].data.push({x:f,y:data.AsinT[i]*1e6});\ | d[0].data.push({x:f,y:data.AsinT[i]*1e6});\ | ||
- | d[1].data.push({x:f,y:data. | + | d[1].data.push({x:f,y:data.AsinTnopro[i]});\ |
}\ | }\ | ||
d;", | d;", | ||
width: '10cm', | width: '10cm', | ||
height: '8cm', | height: '8cm', | ||
- | axes: {x: {title: "As(III)T (µM)", minorLabels: false}, y: {title: "Concentration (µM)", vertical: true, min: 0 | + | axes: {x: {title: "As(III)T (µM)", minorLabels: false}, y: {title: "Concentration (µM)", vertical: true, min: 0}}, |
- | plots: { ' | + | plots: { 'in': {type: 'Lines', vAxis: 'y'} } |
} | } |
Revision as of 08:43, 21 September 2009
{ script: "var data = document.getElementById('accumulationFactorData').data;\
var d=[{title:'As(III)inT',data:[],args:{plot:'in',stroke: { color: '#FF4500' }}},\ {title:'As(III)inT (pro=0)',data:[],args:{plot:'in',stroke: { color: '#FF4500' }}}];\ d[1].args.stroke.style = 'Dash';\ if (!data) data = {AsT:[0], AsinT:[0], AsinTnopro:[0]};\ for(var i=0; i<data.AsT.length; i++) {\ var f=data.AsT[i]*1e6;\ d[0].data.push({x:f,y:data.AsinT[i]*1e6});\ d[1].data.push({x:f,y:data.AsinTnopro[i]});\ }\ d;",
width: '10cm', height: '8cm', axes: {x: {title: "As(III)T (µM)", minorLabels: false}, y: {title: "Concentration (µM)", vertical: true, min: 0}}, plots: { 'in': {type: 'Lines', vAxis: 'y'} } }