Charting code import

This commit is contained in:
2015-11-20 11:46:43 -05:00
parent efcff634a5
commit 5aaed082c9
7 changed files with 1859 additions and 0 deletions
+529
View File
@@ -0,0 +1,529 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="LeafWebCharter.ascx.cs" Inherits="LeafWeb.Web.Charter.LeafWebCharter" %>
<%@ Register Assembly="System.Web.DataVisualization, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
Namespace="System.Web.UI.DataVisualization.Charting" TagPrefix="asp" %>
<asp:Label ID="ErrorLBL" runat="server" Text="" ForeColor="Red" Font-Bold="true"></asp:Label>
<br />
<h1>Charting the Output from LeafWeb Jobs</h1>
<asp:Panel ID="JobChoosePNL" runat="server">
<asp:Label ID="ChooseJobErrrorLBL" runat="server" Text="" ForeColor="Red" Font-Bold="true"></asp:Label>
<br /><br />
Choose a LeafWeb job:
<asp:GridView ID="JobGV" runat="server" AutoGenerateColumns = "False"
Font-Size="Small" Width="500px" BorderStyle="Groove"
BorderWidth="10px" GridLines="Both" AlternatingRowStyle-BackColor="LightGray"
BorderColor="Transparent" >
<HeaderStyle Font-Size="Medium" BackColor="LightGray" />
<Columns>
<asp:CommandField />
<asp:TemplateField HeaderText="Name" HeaderStyle-HorizontalAlign="Left" >
<ItemTemplate>
<asp:LinkButton ID="NameLB" runat="server" Text='<%# Eval("name") %>'
CommandArgument='<%# Eval("name") %>'
OnClick="ChooseJob" >
</asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Submitted by" HeaderStyle-HorizontalAlign="Left" >
<ItemTemplate>
<asp:Label ID="SubmittedByLBL" runat="server"
Text='<%# Eval("submittedBy") %>'> </asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Identifier" HeaderStyle-HorizontalAlign="Left" >
<ItemTemplate>
<asp:Label ID="IdentifierLBL" runat="server"
Text='<%# Eval("identifier") %>'> </asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Date finished" HeaderStyle-HorizontalAlign="Left" >
<ItemTemplate>
<asp:Label ID="DateSubmittedLBL" runat="server"
Text='<%# Eval("dateSubmitted") %>'> </asp:Label>
</ItemTemplate>
</asp:TemplateField>
</Columns>
<SelectedRowStyle BackColor="LightGray" />
</asp:GridView>
</asp:Panel>
<asp:Panel ID="CurveChoosePNL" runat="server">
<table>
<tr>
<td><b>Job number:</b></td>
<td>
<asp:Label ID="JobNumberLBL" runat="server" Text=""></asp:Label>
</td>
</tr>
<tr>
<td><b>Submitted by:</b></td>
<td>
<asp:Label ID="SubmittedByLBL" runat="server" Text=""></asp:Label>
</td>
</tr>
<tr>
<td><b>Job name:</b></td>
<td>
<asp:Label ID="JobNameLBL" runat="server" Text=""></asp:Label>
</td>
</tr>
<tr>
<td><b>Date job finished:</b></td>
<td>
<asp:Label ID="JobDoneDateLBL" runat="server" Text=""></asp:Label>
</td>
</tr>
</table>
<br /><br />
<asp:Button ID="BackToJobListBTN" runat="server" Text="Back to job list"
OnClick="BackToJobList" />
<br /><br />
Please choose one of the curves to chart.<br />
<asp:DropDownList ID="CurveDDL" runat="server">
</asp:DropDownList>
<asp:Button ID="ProduceChartBTN" runat="server" Text="Produce Chart"
onclick="ProduceChartBTN_Click" />
</asp:Panel>
<br /><br />
<asp:Panel ID="ChartPNL" runat="server">
<asp:Chart ID="ChartChloro1" runat="server" Width="700" Height="500" >
<legends>
<asp:Legend Enabled="True" IsTextAutoFit="False" Name="Default" Docking="Bottom"
BackColor="Transparent" Font="Trebuchet MS, 12pt, style=Bold"></asp:Legend>
</legends>
<borderskin SkinStyle="Emboss"></borderskin>
<series>
<asp:Series MarkerSize="8" BorderWidth="3" XValueType="Double"
Name="Rubisco-limited" ChartType="Point" MarkerStyle="Diamond"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Red" ShadowOffset="0"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="9" BorderWidth="3" XValueType="Double"
Name="RuBP regeneration-limited" ChartType="Point" MarkerStyle="Circle"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Blue" ShadowOffset="0"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="2" BorderWidth="1" XValueType="Double"
Name="acCurve" ChartType="Line" MarkerStyle="None"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Red" ShadowOffset="0" IsVisibleInLegend="false"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="2" BorderWidth="1" XValueType="Double"
Name="ajCurve" ChartType="Line" MarkerStyle="None"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Blue" ShadowOffset="0" IsVisibleInLegend="false"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="2" BorderWidth="1" XValueType="Double"
Name="atCurve" ChartType="Line" MarkerStyle="None"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Orange" ShadowOffset="0" IsVisibleInLegend="false"
YValueType="Double"></asp:Series>
</series>
<chartareas>
<asp:ChartArea Name="ChartArea1" BorderColor="64, 64, 64, 64"
BorderDashStyle="Solid" BackSecondaryColor="White"
BackColor="OldLace" ShadowColor="Transparent"
BackGradientStyle="TopBottom" >
<area3dstyle Rotation="25" Perspective="9" LightStyle="Realistic"
Inclination="40" IsRightAngleAxes="False" WallWidth="3"
IsClustered="False" />
<axisy LineColor="64, 64, 64, 64" Title="Net assimilation rate (umol/m2/s)" >
<LabelStyle Font="Trebuchet MS, 12pt, style=Bold" />
<MajorGrid LineColor="64, 64, 64, 64" />
</axisy>
<axisx LineColor="64, 64, 64, 64"
Minimum="0" Title="Chloroplastic CO2 partial pressure (Pa)">
<LabelStyle Font="Trebuchet MS, 12pt, style=Bold" />
<MajorGrid LineColor="64, 64, 64, 64" />
</axisx>
</asp:ChartArea>
</chartareas>
</asp:Chart>
<asp:Chart ID="ChartChloro2" runat="server" Width="700" Height="500" >
<legends>
<asp:Legend Enabled="True" IsTextAutoFit="False" Name="Default" Docking="Bottom"
BackColor="Transparent" Font="Trebuchet MS, 12pt, style=Bold"></asp:Legend>
</legends>
<borderskin SkinStyle="Emboss"></borderskin>
<series>
<asp:Series MarkerSize="8" BorderWidth="3" XValueType="Double"
Name="Rubisco-limited" ChartType="Point" MarkerStyle="Diamond"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Red" ShadowOffset="0"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="9" BorderWidth="3" XValueType="Double"
Name="RuBP regeneration-limited" ChartType="Point" MarkerStyle="Circle"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Blue" ShadowOffset="0"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="2" BorderWidth="1" XValueType="Double"
Name="acCurve" ChartType="Line" MarkerStyle="None"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Red" ShadowOffset="0" IsVisibleInLegend="false"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="2" BorderWidth="1" XValueType="Double"
Name="ajCurve" ChartType="Line" MarkerStyle="None"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Blue" ShadowOffset="0" IsVisibleInLegend="false"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="2" BorderWidth="1" XValueType="Double"
Name="atCurve" ChartType="Line" MarkerStyle="None"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Orange" ShadowOffset="0" IsVisibleInLegend="false"
YValueType="Double"></asp:Series>
</series>
<chartareas>
<asp:ChartArea Name="ChartArea1" BorderColor="64, 64, 64, 64"
BorderDashStyle="Solid" BackSecondaryColor="White"
BackColor="OldLace" ShadowColor="Transparent"
BackGradientStyle="TopBottom" >
<area3dstyle Rotation="25" Perspective="9" LightStyle="Realistic"
Inclination="40" IsRightAngleAxes="False" WallWidth="3"
IsClustered="False" />
<axisy LineColor="64, 64, 64, 64" Title="Net assimilation rate (umol/m2/s)" >
<LabelStyle Font="Trebuchet MS, 12pt, style=Bold" />
<MajorGrid LineColor="64, 64, 64, 64" />
</axisy>
<axisx LineColor="64, 64, 64, 64"
Minimum="0" Title="Chloroplastic CO2 partial pressure (Pa)">
<LabelStyle Font="Trebuchet MS, 12pt, style=Bold" />
<MajorGrid LineColor="64, 64, 64, 64" />
</axisx>
</asp:ChartArea>
</chartareas>
</asp:Chart>
<asp:Chart ID="ChartChloro3" runat="server" Width="700" Height="500" >
<legends>
<asp:Legend Enabled="True" IsTextAutoFit="False" Name="Default" Docking="Bottom"
BackColor="Transparent" Font="Trebuchet MS, 12pt, style=Bold"></asp:Legend>
</legends>
<borderskin SkinStyle="Emboss"></borderskin>
<series>
<asp:Series MarkerSize="8" BorderWidth="3" XValueType="Double"
Name="Rubisco-limited" ChartType="Point" MarkerStyle="Diamond"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Red" ShadowOffset="0"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="9" BorderWidth="3" XValueType="Double"
Name="RuBP regeneration-limited" ChartType="Point" MarkerStyle="Circle"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Blue" ShadowOffset="0"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="2" BorderWidth="1" XValueType="Double"
Name="acCurve" ChartType="Line" MarkerStyle="None"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Red" ShadowOffset="0" IsVisibleInLegend="false"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="2" BorderWidth="1" XValueType="Double"
Name="ajCurve" ChartType="Line" MarkerStyle="None"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Blue" ShadowOffset="0" IsVisibleInLegend="false"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="2" BorderWidth="1" XValueType="Double"
Name="atCurve" ChartType="Line" MarkerStyle="None"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Orange" ShadowOffset="0" IsVisibleInLegend="false"
YValueType="Double"></asp:Series>
</series>
<chartareas>
<asp:ChartArea Name="ChartArea1" BorderColor="64, 64, 64, 64"
BorderDashStyle="Solid" BackSecondaryColor="White"
BackColor="OldLace" ShadowColor="Transparent"
BackGradientStyle="TopBottom" >
<area3dstyle Rotation="25" Perspective="9" LightStyle="Realistic"
Inclination="40" IsRightAngleAxes="False" WallWidth="3"
IsClustered="False" />
<axisy LineColor="64, 64, 64, 64" Title="Net assimilation rate (umol/m2/s)" >
<LabelStyle Font="Trebuchet MS, 12pt, style=Bold" />
<MajorGrid LineColor="64, 64, 64, 64" />
</axisy>
<axisx LineColor="64, 64, 64, 64"
Minimum="0" Title="Chloroplastic CO2 partial pressure (Pa)">
<LabelStyle Font="Trebuchet MS, 12pt, style=Bold" />
<MajorGrid LineColor="64, 64, 64, 64" />
</axisx>
</asp:ChartArea>
</chartareas>
</asp:Chart>
<asp:Chart ID="ChartChloro4" runat="server" Width="700" Height="500" >
<legends>
<asp:Legend Enabled="True" IsTextAutoFit="False" Name="Default" Docking="Bottom"
BackColor="Transparent" Font="Trebuchet MS, 12pt, style=Bold"></asp:Legend>
</legends>
<borderskin SkinStyle="Emboss"></borderskin>
<series>
<asp:Series MarkerSize="8" BorderWidth="3" XValueType="Double"
Name="Rubisco-limited" ChartType="Point" MarkerStyle="Diamond"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Red" ShadowOffset="0"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="9" BorderWidth="3" XValueType="Double"
Name="RuBP regeneration-limited" ChartType="Point" MarkerStyle="Circle"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Blue" ShadowOffset="0"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="2" BorderWidth="1" XValueType="Double"
Name="acCurve" ChartType="Line" MarkerStyle="None"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Red" ShadowOffset="0" IsVisibleInLegend="false"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="2" BorderWidth="1" XValueType="Double"
Name="ajCurve" ChartType="Line" MarkerStyle="None"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Blue" ShadowOffset="0" IsVisibleInLegend="false"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="2" BorderWidth="1" XValueType="Double"
Name="atCurve" ChartType="Line" MarkerStyle="None"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Orange" ShadowOffset="0" IsVisibleInLegend="false"
YValueType="Double"></asp:Series>
</series>
<chartareas>
<asp:ChartArea Name="ChartArea1" BorderColor="64, 64, 64, 64"
BorderDashStyle="Solid" BackSecondaryColor="White"
BackColor="OldLace" ShadowColor="Transparent"
BackGradientStyle="TopBottom" >
<area3dstyle Rotation="25" Perspective="9" LightStyle="Realistic"
Inclination="40" IsRightAngleAxes="False" WallWidth="3"
IsClustered="False" />
<axisy LineColor="64, 64, 64, 64" Title="Net assimilation rate (umol/m2/s)" >
<LabelStyle Font="Trebuchet MS, 12pt, style=Bold" />
<MajorGrid LineColor="64, 64, 64, 64" />
</axisy>
<axisx LineColor="64, 64, 64, 64"
Minimum="0" Title="Chloroplastic CO2 partial pressure (Pa)">
<LabelStyle Font="Trebuchet MS, 12pt, style=Bold" />
<MajorGrid LineColor="64, 64, 64, 64" />
</axisx>
</asp:ChartArea>
</chartareas>
</asp:Chart>
<asp:Chart ID="ChartInter1" runat="server" Width="700" Height="500" >
<legends>
<asp:Legend Enabled="True" IsTextAutoFit="False" Name="Default" Docking="Bottom"
BackColor="Transparent" Font="Trebuchet MS, 12pt, style=Bold"></asp:Legend>
</legends>
<borderskin SkinStyle="Emboss"></borderskin>
<series>
<asp:Series MarkerSize="8" BorderWidth="3" XValueType="Double"
Name="Rubisco-limited" ChartType="Point" MarkerStyle="Diamond"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Red" ShadowOffset="0"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="9" BorderWidth="3" XValueType="Double"
Name="RuBP regeneration-limited" ChartType="Point" MarkerStyle="Circle"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Blue" ShadowOffset="0"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="2" BorderWidth="1" XValueType="Double"
Name="acCurve" ChartType="Line" MarkerStyle="None"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Red" ShadowOffset="0" IsVisibleInLegend="false"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="2" BorderWidth="1" XValueType="Double"
Name="ajCurve" ChartType="Line" MarkerStyle="None"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Blue" ShadowOffset="0" IsVisibleInLegend="false"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="2" BorderWidth="1" XValueType="Double"
Name="atCurve" ChartType="Line" MarkerStyle="None"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Orange" ShadowOffset="0" IsVisibleInLegend="false"
YValueType="Double"></asp:Series>
</series>
<chartareas>
<asp:ChartArea Name="ChartArea1" BorderColor="64, 64, 64, 64"
BorderDashStyle="Solid" BackSecondaryColor="White"
BackColor="OldLace" ShadowColor="Transparent"
BackGradientStyle="TopBottom" >
<area3dstyle Rotation="25" Perspective="9" LightStyle="Realistic"
Inclination="40" IsRightAngleAxes="False" WallWidth="3"
IsClustered="False" />
<axisy LineColor="64, 64, 64, 64" Title="Net assimilation rate (umol/m2/s)" >
<LabelStyle Font="Trebuchet MS, 12pt, style=Bold" />
<MajorGrid LineColor="64, 64, 64, 64" />
</axisy>
<axisx LineColor="64, 64, 64, 64"
Minimum="0" Title="Intercellular CO2 partial pressure (Pa)">
<LabelStyle Font="Trebuchet MS, 12pt, style=Bold" />
<MajorGrid LineColor="64, 64, 64, 64" />
</axisx>
</asp:ChartArea>
</chartareas>
</asp:Chart>
<asp:Chart ID="ChartInter2" runat="server" Width="700" Height="500" >
<legends>
<asp:Legend Enabled="True" IsTextAutoFit="False" Name="Default" Docking="Bottom"
BackColor="Transparent" Font="Trebuchet MS, 12pt, style=Bold"></asp:Legend>
</legends>
<borderskin SkinStyle="Emboss"></borderskin>
<series>
<asp:Series MarkerSize="8" BorderWidth="3" XValueType="Double"
Name="Rubisco-limited" ChartType="Point" MarkerStyle="Diamond"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Red" ShadowOffset="0"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="9" BorderWidth="3" XValueType="Double"
Name="RuBP regeneration-limited" ChartType="Point" MarkerStyle="Circle"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Blue" ShadowOffset="0"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="2" BorderWidth="1" XValueType="Double"
Name="acCurve" ChartType="Line" MarkerStyle="None"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Red" ShadowOffset="0" IsVisibleInLegend="false"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="2" BorderWidth="1" XValueType="Double"
Name="ajCurve" ChartType="Line" MarkerStyle="None"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Blue" ShadowOffset="0" IsVisibleInLegend="false"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="2" BorderWidth="1" XValueType="Double"
Name="atCurve" ChartType="Line" MarkerStyle="None"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Orange" ShadowOffset="0" IsVisibleInLegend="false"
YValueType="Double"></asp:Series>
</series>
<chartareas>
<asp:ChartArea Name="ChartArea1" BorderColor="64, 64, 64, 64"
BorderDashStyle="Solid" BackSecondaryColor="White"
BackColor="OldLace" ShadowColor="Transparent"
BackGradientStyle="TopBottom" >
<area3dstyle Rotation="25" Perspective="9" LightStyle="Realistic"
Inclination="40" IsRightAngleAxes="False" WallWidth="3"
IsClustered="False" />
<axisy LineColor="64, 64, 64, 64" Title="Net assimilation rate (umol/m2/s)" >
<LabelStyle Font="Trebuchet MS, 12pt, style=Bold" />
<MajorGrid LineColor="64, 64, 64, 64" />
</axisy>
<axisx LineColor="64, 64, 64, 64"
Minimum="0" Title="Intercellular CO2 partial pressure (Pa)">
<LabelStyle Font="Trebuchet MS, 12pt, style=Bold" />
<MajorGrid LineColor="64, 64, 64, 64" />
</axisx>
</asp:ChartArea>
</chartareas>
</asp:Chart>
<asp:Chart ID="ChartInter3" runat="server" Width="700" Height="500" >
<legends>
<asp:Legend Enabled="True" IsTextAutoFit="False" Name="Default" Docking="Bottom"
BackColor="Transparent" Font="Trebuchet MS, 12pt, style=Bold"></asp:Legend>
</legends>
<borderskin SkinStyle="Emboss"></borderskin>
<series>
<asp:Series MarkerSize="8" BorderWidth="3" XValueType="Double"
Name="Rubisco-limited" ChartType="Point" MarkerStyle="Diamond"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Red" ShadowOffset="0"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="9" BorderWidth="3" XValueType="Double"
Name="RuBP regeneration-limited" ChartType="Point" MarkerStyle="Circle"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Blue" ShadowOffset="0"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="2" BorderWidth="1" XValueType="Double"
Name="acCurve" ChartType="Line" MarkerStyle="None"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Red" ShadowOffset="0" IsVisibleInLegend="false"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="2" BorderWidth="1" XValueType="Double"
Name="ajCurve" ChartType="Line" MarkerStyle="None"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Blue" ShadowOffset="0" IsVisibleInLegend="false"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="2" BorderWidth="1" XValueType="Double"
Name="atCurve" ChartType="Line" MarkerStyle="None"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Orange" ShadowOffset="0" IsVisibleInLegend="false"
YValueType="Double"></asp:Series>
</series>
<chartareas>
<asp:ChartArea Name="ChartArea1" BorderColor="64, 64, 64, 64"
BorderDashStyle="Solid" BackSecondaryColor="White"
BackColor="OldLace" ShadowColor="Transparent"
BackGradientStyle="TopBottom" >
<area3dstyle Rotation="25" Perspective="9" LightStyle="Realistic"
Inclination="40" IsRightAngleAxes="False" WallWidth="3"
IsClustered="False" />
<axisy LineColor="64, 64, 64, 64" Title="Net assimilation rate (umol/m2/s)" >
<LabelStyle Font="Trebuchet MS, 12pt, style=Bold" />
<MajorGrid LineColor="64, 64, 64, 64" />
</axisy>
<axisx LineColor="64, 64, 64, 64"
Minimum="0" Title="Intercellular CO2 partial pressure (Pa)">
<LabelStyle Font="Trebuchet MS, 12pt, style=Bold" />
<MajorGrid LineColor="64, 64, 64, 64" />
</axisx>
</asp:ChartArea>
</chartareas>
</asp:Chart>
<asp:Chart ID="ChartInter4" runat="server" Width="700" Height="500" >
<legends>
<asp:Legend Enabled="True" IsTextAutoFit="False" Name="Default" Docking="Bottom"
BackColor="Transparent" Font="Trebuchet MS, 12pt, style=Bold"></asp:Legend>
</legends>
<borderskin SkinStyle="Emboss"></borderskin>
<series>
<asp:Series MarkerSize="8" BorderWidth="3" XValueType="Double"
Name="Rubisco-limited" ChartType="Point" MarkerStyle="Diamond"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Red" ShadowOffset="0"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="9" BorderWidth="3" XValueType="Double"
Name="RuBP regeneration-limited" ChartType="Point" MarkerStyle="Circle"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Blue" ShadowOffset="0"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="2" BorderWidth="1" XValueType="Double"
Name="acCurve" ChartType="Line" MarkerStyle="None"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Red" ShadowOffset="0" IsVisibleInLegend="false"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="2" BorderWidth="1" XValueType="Double"
Name="ajCurve" ChartType="Line" MarkerStyle="None"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Blue" ShadowOffset="0" IsVisibleInLegend="false"
YValueType="Double"></asp:Series>
<asp:Series MarkerSize="2" BorderWidth="1" XValueType="Double"
Name="atCurve" ChartType="Line" MarkerStyle="None"
ShadowColor="Black" BorderColor="180, 26, 59, 105"
Color="Orange" ShadowOffset="0" IsVisibleInLegend="false"
YValueType="Double"></asp:Series>
</series>
<chartareas>
<asp:ChartArea Name="ChartArea1" BorderColor="64, 64, 64, 64"
BorderDashStyle="Solid" BackSecondaryColor="White"
BackColor="OldLace" ShadowColor="Transparent"
BackGradientStyle="TopBottom" >
<area3dstyle Rotation="25" Perspective="9" LightStyle="Realistic"
Inclination="40" IsRightAngleAxes="False" WallWidth="3"
IsClustered="False" />
<axisy LineColor="64, 64, 64, 64" Title="Net assimilation rate (umol/m2/s)" >
<LabelStyle Font="Trebuchet MS, 12pt, style=Bold" />
<MajorGrid LineColor="64, 64, 64, 64" />
</axisy>
<axisx LineColor="64, 64, 64, 64"
Minimum="0" Title="Intercellular CO2 partial pressure (Pa)">
<LabelStyle Font="Trebuchet MS, 12pt, style=Bold" />
<MajorGrid LineColor="64, 64, 64, 64" />
</axisx>
</asp:ChartArea>
</chartareas>
</asp:Chart>
</asp:Panel>