diff --git a/instat/dlgPICSARainfall.vb b/instat/dlgPICSARainfall.vb
index 530be55f288..87a8807084f 100644
--- a/instat/dlgPICSARainfall.vb
+++ b/instat/dlgPICSARainfall.vb
@@ -51,6 +51,7 @@ Public Class dlgPICSARainfall
Private clsMeanFunction As New RFunction
Private clsRoundMeanY As New RFunction
+ Private clsPasteRoundMeanY As New RFunction
Private clsAsDateMeanY As New RFunction
Private clsMedianFunction As New RFunction
Private clsRoundMedianY As New RFunction
@@ -208,6 +209,7 @@ Public Class dlgPICSARainfall
clsGeomHlineAesMean = New RFunction
clsMeanFunction = New RFunction
clsRoundMeanY = New RFunction
+ clsPasteRoundMeanY = New RFunction
clsAsDateMeanY = New RFunction
clsGeomHlineMedian = New RFunction
clsGeomHlineAesMedian = New RFunction
@@ -326,6 +328,7 @@ Public Class dlgPICSARainfall
clsMeanFunction.AddParameter("na.rm", "TRUE")
clsRoundMeanY.SetRCommand("round")
+ clsPasteRoundMeanY.SetRCommand("round")
clsRoundMeanY.AddParameter("x", clsRFunctionParameter:=clsMeanFunction, iPosition:=0)
@@ -348,7 +351,7 @@ Public Class dlgPICSARainfall
clsPasteMeanY.SetRCommand("paste")
clsPasteMeanY.AddParameter("0", Chr(34) & "Mean:" & Chr(34), bIncludeArgumentName:=False, iPosition:=0)
- clsPasteMeanY.AddParameter("1", clsRFunctionParameter:=clsRoundMeanY, bIncludeArgumentName:=False, iPosition:=1)
+ clsPasteMeanY.AddParameter("1", clsRFunctionParameter:=clsPasteRoundMeanY, bIncludeArgumentName:=False, iPosition:=1)
clsFormatMeanY.SetRCommand("format")
clsFormatMeanY.AddParameter("x", strMeanName, iPosition:=0)
@@ -623,9 +626,9 @@ Public Class dlgPICSARainfall
'add more functions
Private Sub cmdPICSAOptions_Click(sender As Object, e As EventArgs) Handles cmdPICSAOptions.Click
- sdgPICSARainfallGraph.SetRCode(clsNewOperator:=ucrBase.clsRsyntax.clsBaseOperator, dctNewThemeFunctions:=dctThemeFunctions, clsNewLabsFunction:=clsLabsFunction, clsNewThemeFunction:=clsThemeFunction, clsNewXScaleContinuousFunction:=clsXScalecontinuousFunction, clsNewYScaleContinuousFunction:=clsYScalecontinuousFunction, clsNewGeomhlineMean:=clsGeomHlineMean, clsNewGeomhlineMedian:=clsGeomHlineMedian, clsNewGeomhlineLowerTercile:=clsGeomHlineLowerTercile, clsNewGeomhlineUpperTercile:=clsGeomHlineUpperTercile, clsNewXLabsFunction:=clsXLabsFunction, clsNewYLabsFunction:=clsYLabsFunction, clsNewRaesFunction:=clsRaesFunction, clsNewAsDate:=clsAsDate, clsNewAsDateYLimit:=clsAsDateYLimit, clsNewAsNumeric:=clsAsNumeric, clsNewYScaleDateFunction:=clsYScaleDateFunction, clsNewDatePeriodOperator:=clsDatePeriodOperator, clsNewGeomTextLabelMeanLine:=clsGeomTextLabelMeanLine, clsNewRoundMeanY:=clsRoundMeanY, clsNewPasteMeanY:=clsPasteMeanY, clsNewGeomTextLabelMedianLine:=clsGeomTextLabelMedianLine, clsNewRoundMedianY:=clsRoundMedianY, clsNewPasteMedianY:=clsPasteMedianY, clsNewGeomTextLabelLowerTercileLine:=clsGeomTextLabelLowerTercileLine, clsNewRoundLowerTercileY:=clsRoundLowerTercileY, clsNewPasteLowerTercileY:=clsPasteLowerTercileY, clsNewGeomTextLabelUpperTercileLine:=clsGeomTextLabelUpperTercileLine, clsNewRoundUpperTercileY:=clsRoundUpperTercileY, clsNewPasteUpperTercileY:=clsPasteUpperTercileY, strXAxisType:=ucrReceiverX.strCurrDataType, clsNewMutateFunction:=clsMutateFunction, clsNewMeanFunction:=clsMeanFunction, clsNewMedianFunction:=clsMedianFunction, clsNewLowerTercileFunction:=clsLowerTercileFunction, clsNewUpperTercileFunction:=clsUpperTercileFunction, clsNewAsDateMeanY:=clsAsDateMeanY, clsNewAsDateMedianY:=clsAsDateMedianY, clsNewAsDateLowerTercileY:=clsAsDateLowerTercileY, clsNewAsDateUpperTercileY:=clsAsDateUpperTercileY, clsNewFormatMeanY:=clsFormatMeanY, clsNewFormatMedianY:=clsFormatMedianY, clsNewFormatLowerTercileY:=clsFormatLowerTercileY, clsNewFormatUpperTercileY:=clsFormatUpperTercileY, clsNewYLimitsYDate:=clsYLimitsYDate, bReset:=bResetSubdialog)
+ sdgPICSARainfallGraph.SetRCode(clsNewOperator:=ucrBase.clsRsyntax.clsBaseOperator, clsNewPipeOperator:=clsPipeOperator, dctNewThemeFunctions:=dctThemeFunctions, clsNewLabsFunction:=clsLabsFunction, clsNewThemeFunction:=clsThemeFunction, clsNewXScaleContinuousFunction:=clsXScalecontinuousFunction, clsNewYScaleContinuousFunction:=clsYScalecontinuousFunction, clsNewGeomhlineMean:=clsGeomHlineMean, clsNewGeomhlineMedian:=clsGeomHlineMedian, clsNewGeomhlineLowerTercile:=clsGeomHlineLowerTercile, clsNewGeomhlineUpperTercile:=clsGeomHlineUpperTercile, clsNewXLabsFunction:=clsXLabsFunction, clsNewYLabsFunction:=clsYLabsFunction, clsNewRaesFunction:=clsRaesFunction, clsNewAsDate:=clsAsDate, clsNewAsDateYLimit:=clsAsDateYLimit, clsNewAsNumeric:=clsAsNumeric, clsNewYScaleDateFunction:=clsYScaleDateFunction, clsNewDatePeriodOperator:=clsDatePeriodOperator, clsNewGeomTextLabelMeanLine:=clsGeomTextLabelMeanLine, clsNewRoundMeanY:=clsRoundMeanY, clsNewPasteRoundMeanY:=clsPasteRoundMeanY, clsNewPasteMeanY:=clsPasteMeanY, clsNewGeomTextLabelMedianLine:=clsGeomTextLabelMedianLine, clsNewRoundMedianY:=clsRoundMedianY, clsNewPasteMedianY:=clsPasteMedianY, clsNewGeomTextLabelLowerTercileLine:=clsGeomTextLabelLowerTercileLine, clsNewRoundLowerTercileY:=clsRoundLowerTercileY, clsNewPasteLowerTercileY:=clsPasteLowerTercileY, clsNewGeomTextLabelUpperTercileLine:=clsGeomTextLabelUpperTercileLine, clsNewRoundUpperTercileY:=clsRoundUpperTercileY, clsNewPasteUpperTercileY:=clsPasteUpperTercileY, strXAxisType:=ucrReceiverX.strCurrDataType, clsNewMutateFunction:=clsMutateFunction, clsNewMeanFunction:=clsMeanFunction, clsNewMedianFunction:=clsMedianFunction, clsNewLowerTercileFunction:=clsLowerTercileFunction, clsNewUpperTercileFunction:=clsUpperTercileFunction, clsNewAsDateMeanY:=clsAsDateMeanY, clsNewAsDateMedianY:=clsAsDateMedianY, clsNewAsDateLowerTercileY:=clsAsDateLowerTercileY, clsNewAsDateUpperTercileY:=clsAsDateUpperTercileY, clsNewFormatMeanY:=clsFormatMeanY, clsNewFormatMedianY:=clsFormatMedianY, clsNewFormatLowerTercileY:=clsFormatLowerTercileY, clsNewFormatUpperTercileY:=clsFormatUpperTercileY, clsNewYLimitsYDate:=clsYLimitsYDate, bReset:=bResetSubdialog)
sdgPICSARainfallGraph.ShowDialog()
- AddRemoveHLineCalculations()
+ AddRemoveGroupBy()
bResetSubdialog = False
End Sub
@@ -633,8 +636,7 @@ Public Class dlgPICSARainfall
sdgPlots.SetRCode(clsNewOperator:=ucrBase.clsRsyntax.clsBaseOperator, clsNewYScalecontinuousFunction:=clsYScalecontinuousFunction, clsNewXScalecontinuousFunction:=clsXScalecontinuousFunction, clsNewXLabsTitleFunction:=clsXLabsFunction, clsNewYLabTitleFunction:=clsYLabsFunction, clsNewLabsFunction:=clsLabsFunction, clsNewFacetFunction:=clsFacetFunction, clsNewThemeFunction:=clsThemeFunction, dctNewThemeFunctions:=dctThemeFunctions, clsNewGlobalAesFunction:=clsRaesFunction, ucrNewBaseSelector:=ucrSelectorPICSARainfall, bReset:=bResetSubdialog)
sdgPlots.ShowDialog()
bResetSubdialog = False
- 'ucrReceiverFacetBy.SetRCode(clsFacetOperator)
- AddRemoveGroupBy()
+ 'AddRemoveGroupByAndHlines()
End Sub
Private Sub cmdLineOptions_Click(sender As Object, e As EventArgs) Handles cmdLineOptions.Click
@@ -716,7 +718,7 @@ Public Class dlgPICSARainfall
End Sub
Private Sub ucrVariablesAsFactorForPicsa_ControlValueChanged(ucrChangedControl As ucrCore) Handles ucrVariablesAsFactorForPicsa.ControlValueChanged, ucrReceiverColourBy.ControlValueChanged, ucrReceiverFacetBy.ControlValueChanged
- AddRemoveHLineCalculations()
+ AddRemoveGroupBy()
End Sub
Private Sub ucrSelectorPICSARainfall_ControlValueChanged(ucrChangedControl As ucrCore) Handles ucrSelectorPICSARainfall.ControlValueChanged
@@ -727,38 +729,34 @@ Public Class dlgPICSARainfall
Private Sub AddRemoveGroupBy()
Dim i As Integer = 0
- clsGroupByFunction.ClearParameters()
- If clsBaseOperator.ContainsParameter("facets") Then
- For Each clsTempParam As RParameter In clsFacetOperator.clsParameters
- If clsTempParam.strArgumentValue <> "" AndAlso clsTempParam.strArgumentValue <> "." Then
- clsGroupByFunction.AddParameter(i, clsTempParam.strArgumentValue, bIncludeArgumentName:=False, iPosition:=i)
- End If
+ If clsPipeOperator.ContainsParameter("mutate") Then
+ clsGroupByFunction.ClearParameters()
+ If clsBaseOperator.ContainsParameter("facets") Then
+ For Each clsTempParam As RParameter In clsFacetOperator.clsParameters
+ If clsTempParam.strArgumentValue <> "" AndAlso clsTempParam.strArgumentValue <> "." Then
+ clsGroupByFunction.AddParameter(i, clsTempParam.strArgumentValue, bIncludeArgumentName:=False, iPosition:=i)
+ i = i + 1
+ End If
+ Next
+ End If
+
+ If clsRaesFunction.ContainsParameter("colour") Then
+ clsGroupByFunction.AddParameter(i, ucrReceiverColourBy.GetVariableNames(bWithQuotes:=False), bIncludeArgumentName:=False, iPosition:=0)
i = i + 1
- Next
- Else
- End If
- AddRemoveHLineCalculations()
- End Sub
+ End If
- Private Sub AddRemoveHLineCalculations()
- If clsBaseOperator.ContainsParameter("hlinemean") OrElse clsBaseOperator.ContainsParameter("hlinemedian") OrElse clsBaseOperator.ContainsParameter("hlinelowertercile") OrElse clsBaseOperator.ContainsParameter("hlineuppertercile") Then
- clsPipeOperator.AddParameter("group_by", clsRFunctionParameter:=clsGroupByFunction, iPosition:=1)
If Not ucrVariablesAsFactorForPicsa.bSingleVariable Then
- clsGroupByFunction.AddParameter("0", "variable", bIncludeArgumentName:=False, iPosition:=0)
+ clsGroupByFunction.AddParameter(i, "variable", bIncludeArgumentName:=False, iPosition:=0)
+ i = i + 1
+ End If
+
+ If clsGroupByFunction.iParameterCount > 0 Then
+ clsPipeOperator.AddParameter("group_by", clsRFunctionParameter:=clsGroupByFunction, iPosition:=1)
Else
- If (Not ucrReceiverColourBy.IsEmpty AndAlso Not ucrReceiverFacetBy.IsEmpty) Then
- clsGroupByFunction.AddParameter("0", ucrReceiverColourBy.GetVariableNames(bWithQuotes:=False), bIncludeArgumentName:=False, iPosition:=0)
- ElseIf (Not ucrReceiverColourBy.IsEmpty AndAlso ucrReceiverFacetBy.IsEmpty) Then
- clsGroupByFunction.AddParameter("0", ucrReceiverColourBy.GetVariableNames(bWithQuotes:=False), bIncludeArgumentName:=False, iPosition:=0)
- Else
- clsGroupByFunction.RemoveParameterByName("0")
- clsPipeOperator.RemoveParameterByName("group_by")
- End If
+ clsPipeOperator.RemoveParameterByName("group_by")
End If
- clsPipeOperator.AddParameter("mutate", clsRFunctionParameter:=clsMutateFunction, iPosition:=2)
Else
clsPipeOperator.RemoveParameterByName("group_by")
- clsPipeOperator.RemoveParameterByName("mutate")
End If
SetPipeAssignTo()
End Sub
diff --git a/instat/sdgPICSARainfallGraph.Designer.vb b/instat/sdgPICSARainfallGraph.Designer.vb
index 73c663e73ec..44688fd06fa 100644
--- a/instat/sdgPICSARainfallGraph.Designer.vb
+++ b/instat/sdgPICSARainfallGraph.Designer.vb
@@ -68,6 +68,8 @@ Partial Class sdgPICSARainfallGraph
Me.ucrInputXTo = New instat.ucrInputTextBox()
Me.ucrNudXAxisAngle = New instat.ucrNud()
Me.tpYAxis = New System.Windows.Forms.TabPage()
+ Me.ucrNudUpperLimit = New instat.ucrNud()
+ Me.ucrNudLowerLimit = New instat.ucrNud()
Me.lblDateDisplayFormat = New System.Windows.Forms.Label()
Me.rdoYDate = New System.Windows.Forms.RadioButton()
Me.rdoYNumeric = New System.Windows.Forms.RadioButton()
@@ -75,7 +77,9 @@ Partial Class sdgPICSARainfallGraph
Me.lblYInStepsOf = New System.Windows.Forms.Label()
Me.lblYTo = New System.Windows.Forms.Label()
Me.lblYFrom = New System.Windows.Forms.Label()
+ Me.ucrInputYSpecifyUpperLimitDateMonth = New instat.ucrInputComboBox()
Me.ucrInputYSpecifyUpperLimitNumeric = New instat.ucrInputTextBox()
+ Me.ucrInputYSpecifyLowerLimitDateMonth = New instat.ucrInputComboBox()
Me.ucrChkYSpecifyUpperLimit = New instat.ucrCheck()
Me.ucrInputYSpecifyLowerLimitNumeric = New instat.ucrInputTextBox()
Me.ucrChkYSpecifyLowerLimit = New instat.ucrCheck()
@@ -160,8 +164,6 @@ Partial Class sdgPICSARainfallGraph
Me.UcrChkPnlBackgroundFill = New instat.ucrCheck()
Me.ucrChkPnlBackgroundColour = New instat.ucrCheck()
Me.ucrSdgPICSARainfalbuttons = New instat.ucrButtonsSubdialogue()
- Me.ucrInputYSpecifyLowerLimitDateMonth = New instat.ucrInputComboBox()
- Me.ucrInputYSpecifyUpperLimitDateMonth = New instat.ucrInputComboBox()
Me.tbPICSA.SuspendLayout()
Me.tpTitles.SuspendLayout()
Me.grpyAxisTitle.SuspendLayout()
@@ -528,6 +530,8 @@ Partial Class sdgPICSARainfallGraph
'
'tpYAxis
'
+ Me.tpYAxis.Controls.Add(Me.ucrNudUpperLimit)
+ Me.tpYAxis.Controls.Add(Me.ucrNudLowerLimit)
Me.tpYAxis.Controls.Add(Me.lblDateDisplayFormat)
Me.tpYAxis.Controls.Add(Me.rdoYDate)
Me.tpYAxis.Controls.Add(Me.rdoYNumeric)
@@ -559,6 +563,26 @@ Partial Class sdgPICSARainfallGraph
Me.tpYAxis.Name = "tpYAxis"
Me.tpYAxis.UseVisualStyleBackColor = True
'
+ 'ucrNudUpperLimit
+ '
+ Me.ucrNudUpperLimit.DecimalPlaces = New Decimal(New Integer() {0, 0, 0, 0})
+ Me.ucrNudUpperLimit.Increment = New Decimal(New Integer() {1, 0, 0, 0})
+ resources.ApplyResources(Me.ucrNudUpperLimit, "ucrNudUpperLimit")
+ Me.ucrNudUpperLimit.Maximum = New Decimal(New Integer() {100, 0, 0, 0})
+ Me.ucrNudUpperLimit.Minimum = New Decimal(New Integer() {0, 0, 0, 0})
+ Me.ucrNudUpperLimit.Name = "ucrNudUpperLimit"
+ Me.ucrNudUpperLimit.Value = New Decimal(New Integer() {0, 0, 0, 0})
+ '
+ 'ucrNudLowerLimit
+ '
+ Me.ucrNudLowerLimit.DecimalPlaces = New Decimal(New Integer() {0, 0, 0, 0})
+ Me.ucrNudLowerLimit.Increment = New Decimal(New Integer() {1, 0, 0, 0})
+ resources.ApplyResources(Me.ucrNudLowerLimit, "ucrNudLowerLimit")
+ Me.ucrNudLowerLimit.Maximum = New Decimal(New Integer() {100, 0, 0, 0})
+ Me.ucrNudLowerLimit.Minimum = New Decimal(New Integer() {0, 0, 0, 0})
+ Me.ucrNudLowerLimit.Name = "ucrNudLowerLimit"
+ Me.ucrNudLowerLimit.Value = New Decimal(New Integer() {0, 0, 0, 0})
+ '
'lblDateDisplayFormat
'
resources.ApplyResources(Me.lblDateDisplayFormat, "lblDateDisplayFormat")
@@ -604,6 +628,13 @@ Partial Class sdgPICSARainfallGraph
resources.ApplyResources(Me.lblYFrom, "lblYFrom")
Me.lblYFrom.Name = "lblYFrom"
'
+ 'ucrInputYSpecifyUpperLimitDateMonth
+ '
+ Me.ucrInputYSpecifyUpperLimitDateMonth.AddQuotesIfUnrecognised = True
+ Me.ucrInputYSpecifyUpperLimitDateMonth.IsReadOnly = False
+ resources.ApplyResources(Me.ucrInputYSpecifyUpperLimitDateMonth, "ucrInputYSpecifyUpperLimitDateMonth")
+ Me.ucrInputYSpecifyUpperLimitDateMonth.Name = "ucrInputYSpecifyUpperLimitDateMonth"
+ '
'ucrInputYSpecifyUpperLimitNumeric
'
Me.ucrInputYSpecifyUpperLimitNumeric.AddQuotesIfUnrecognised = True
@@ -612,6 +643,13 @@ Partial Class sdgPICSARainfallGraph
resources.ApplyResources(Me.ucrInputYSpecifyUpperLimitNumeric, "ucrInputYSpecifyUpperLimitNumeric")
Me.ucrInputYSpecifyUpperLimitNumeric.Name = "ucrInputYSpecifyUpperLimitNumeric"
'
+ 'ucrInputYSpecifyLowerLimitDateMonth
+ '
+ Me.ucrInputYSpecifyLowerLimitDateMonth.AddQuotesIfUnrecognised = True
+ Me.ucrInputYSpecifyLowerLimitDateMonth.IsReadOnly = False
+ resources.ApplyResources(Me.ucrInputYSpecifyLowerLimitDateMonth, "ucrInputYSpecifyLowerLimitDateMonth")
+ Me.ucrInputYSpecifyLowerLimitDateMonth.Name = "ucrInputYSpecifyLowerLimitDateMonth"
+ '
'ucrChkYSpecifyUpperLimit
'
Me.ucrChkYSpecifyUpperLimit.Checked = False
@@ -1233,20 +1271,6 @@ Partial Class sdgPICSARainfallGraph
resources.ApplyResources(Me.ucrSdgPICSARainfalbuttons, "ucrSdgPICSARainfalbuttons")
Me.ucrSdgPICSARainfalbuttons.Name = "ucrSdgPICSARainfalbuttons"
'
- 'ucrInputYSpecifyLowerLimitDateMonth
- '
- Me.ucrInputYSpecifyLowerLimitDateMonth.AddQuotesIfUnrecognised = True
- Me.ucrInputYSpecifyLowerLimitDateMonth.IsReadOnly = False
- resources.ApplyResources(Me.ucrInputYSpecifyLowerLimitDateMonth, "ucrInputYSpecifyLowerLimitDateMonth")
- Me.ucrInputYSpecifyLowerLimitDateMonth.Name = "ucrInputYSpecifyLowerLimitDateMonth"
- '
- 'ucrInputYSpecifyUpperLimitDateMonth
- '
- Me.ucrInputYSpecifyUpperLimitDateMonth.AddQuotesIfUnrecognised = True
- Me.ucrInputYSpecifyUpperLimitDateMonth.IsReadOnly = False
- resources.ApplyResources(Me.ucrInputYSpecifyUpperLimitDateMonth, "ucrInputYSpecifyUpperLimitDateMonth")
- Me.ucrInputYSpecifyUpperLimitDateMonth.Name = "ucrInputYSpecifyUpperLimitDateMonth"
- '
'sdgPICSARainfallGraph
'
resources.ApplyResources(Me, "$this")
@@ -1424,4 +1448,6 @@ Partial Class sdgPICSARainfallGraph
Friend WithEvents lblMajorGridLineColour As Label
Friend WithEvents ucrInputYSpecifyUpperLimitDateMonth As ucrInputComboBox
Friend WithEvents ucrInputYSpecifyLowerLimitDateMonth As ucrInputComboBox
+ Friend WithEvents ucrNudUpperLimit As ucrNud
+ Friend WithEvents ucrNudLowerLimit As ucrNud
End Class
diff --git a/instat/sdgPICSARainfallGraph.resx b/instat/sdgPICSARainfallGraph.resx
index 7d25c65604f..da404c2a414 100644
--- a/instat/sdgPICSARainfallGraph.resx
+++ b/instat/sdgPICSARainfallGraph.resx
@@ -210,2531 +210,1706 @@
9
-
- grpyAxisTitle
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ True
-
- tpTitles
+
+ NoControl
-
- 0
+
+ 6, 82
-
- grpAxes
+
+ 30, 13
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 45
-
- tpTitles
+
+ Size:
-
- 1
+
+ lblYAxisTitleSize
-
- grpGraphTitles
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ grpyAxisTitle
-
- tpTitles
+
+ 0
-
- 2
+
+ True
-
- 4, 22
+
+ NoControl
-
- 3, 3, 3, 3
+
+ 6, 21
-
- 567, 309
+
+ 50, 17
-
- 0
+
+ 44
-
- Titles
+
+ Auto
-
- tpTitles
+
+ rdoAutoYAxis
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- tbPICSA
+
+ grpyAxisTitle
-
- 0
+
+ 1
-
- grpXAxisLabels
+
+ 6, 44
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 181, 21
-
- tpXAxis
+
+ 14
-
- 0
+
+ ucrInputYAxisTitle
-
- 4, 22
+
+ instat.ucrInputTextBox, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
- 3, 3, 3, 3
+
+ grpyAxisTitle
-
- 567, 309
+
+ 2
-
- 1
+
+ True
-
- X-Axis
+
+ NoControl
-
- tpXAxis
+
+ 142, 21
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 62, 17
-
- tbPICSA
+
+ 42
-
- 1
+
+ No Title
-
- True
+
+ rdoNoYAxisTitle
-
- NoControl
+
+ System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 15, 94
+
+ grpyAxisTitle
-
- 79, 13
+
+ 3
-
- 50
+
+ 43, 79
-
- Display Format:
+
+ 50, 20
-
- lblDateDisplayFormat
+
+ 22
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ ucrNudYAxisTitleSize
-
- tpYAxis
+
+ instat.ucrNud, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
- 0
+
+ grpyAxisTitle
-
- Button
+
+ 4
-
- Flat
+
+ True
-
+
NoControl
-
- 282, 16
-
-
- 98, 27
+
+ 67, 21
-
- 43
+
+ 60, 17
-
- Date
+
+ 41
-
- MiddleCenter
+
+ Specify
-
- rdoYDate
+
+ rdoSpecifyYAxisTitle
-
+
System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- tpYAxis
+
+ grpyAxisTitle
-
- 1
+
+ 5
-
- Button
+
+ 6, 15
-
- Flat
+
+ 204, 57
-
- NoControl
+
+ 37
-
- 186, 16
+
+ UcrPnlYAxisTitle
-
- 98, 27
+
+ instat.UcrPanel, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
- 42
+
+ grpyAxisTitle
-
- Numeric
+
+ 6
-
- MiddleCenter
+
+ 306, 129
-
- rdoYNumeric
+
+ 228, 105
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 36
-
- tpYAxis
+
+ Y-Axis Title
-
- 2
+
+ grpyAxisTitle
-
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tpTitles
+
+
+ 0
+
+
True
-
+
NoControl
-
- 15, 63
+
+ 6, 82
-
- 65, 13
+
+ 30, 13
-
- 37
+
+ 44
-
- Start Month:
+
+ Size:
-
- lblStartMonth
+
+ lblXAxisTitleSize
-
+
System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- tpYAxis
+
+ grpAxes
-
- 3
+
+ 0
-
+
True
-
+
NoControl
-
- 378, 64
-
-
- 61, 13
-
-
- 22
-
-
- In Steps of:
+
+ 6, 21
-
- lblYInStepsOf
+
+ 50, 17
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 43
-
- tpYAxis
+
+ Auto
-
- 4
+
+ rdoAutoXAxis
-
- True
+
+ System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- NoControl
+
+ grpAxes
-
- 257, 64
+
+ 1
-
- 23, 13
+
+ 6, 44
-
- 21
+
+ 181, 21
-
- To:
+
+ 42
-
- lblYTo
+
+ ucrInputXAxisTitle
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ instat.ucrInputTextBox, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
- tpYAxis
+
+ grpAxes
-
- 5
+
+ 2
-
+
True
-
+
NoControl
-
- 132, 64
+
+ 142, 21
-
- 33, 13
+
+ 62, 17
-
- 20
+
+ 41
-
- From:
+
+ No Title
-
- lblYFrom
+
+ rdoNoTitleXAxisTitle
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- tpYAxis
+
+ grpAxes
-
- 6
+
+ 3
-
- 243, 156
+
+ True
-
- 93, 21
+
+ NoControl
-
- 49
+
+ 67, 21
-
- ucrInputYSpecifyUpperLimitDateMonth
+
+ 62, 17
-
- instat.ucrInputComboBox, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+
+ 40
-
- tpYAxis
+
+ Specifiy
-
- 7
+
+ rdoSpecifyXAxisTitle
-
- 169, 157
+
+ System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 59, 21
+
+ grpAxes
-
- 48
+
+ 4
-
- ucrInputYSpecifyUpperLimitNumeric
+
+ 6, 15
-
- instat.ucrInputTextBox, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+
+ 204, 57
-
- tpYAxis
+
+ 36
-
- 8
+
+ ucrPnlXAxisTitle
-
- 243, 126
+
+ instat.UcrPanel, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
- 93, 21
+
+ grpAxes
-
- 46
+
+ 5
-
- ucrInputYSpecifyLowerLimitDateMonth
+
+ 43, 79
-
- instat.ucrInputComboBox, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+
+ 50, 20
-
- tpYAxis
+
+ 23
-
- 9
+
+ ucrNudXAxisTitleSize
-
- 18, 157
+
+ instat.ucrNud, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
- 141, 20
+
+ grpAxes
-
- 47
-
-
- ucrChkYSpecifyUpperLimit
-
-
- instat.ucrCheck, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpYAxis
-
-
- 10
-
-
- 169, 127
-
-
- 59, 21
-
-
- 45
-
-
- ucrInputYSpecifyLowerLimitNumeric
-
-
- instat.ucrInputTextBox, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpYAxis
-
-
- 11
-
-
- 18, 127
-
-
- 141, 20
-
-
- 44
-
-
- ucrChkYSpecifyLowerLimit
-
-
- instat.ucrCheck, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpYAxis
-
-
- 12
-
-
- 161, 7
-
-
- 243, 48
-
-
- 39
-
-
- ucrPnlYAxisType
-
-
- instat.UcrPanel, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpYAxis
-
-
- 13
-
-
- 86, 60
-
-
- 96, 21
-
-
- 38
-
-
- ucrInputStartMonth
-
-
- instat.ucrInputComboBox, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpYAxis
-
-
- 14
-
-
- 18, 61
-
-
- 111, 20
-
-
- 29
-
-
- ucrChkSpecifyYAxisTickMarks
-
-
- instat.ucrCheck, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpYAxis
-
-
- 15
-
-
- 382, 89
-
-
- 45, 20
-
-
- 36
-
-
- ucrNudDateBreakNumber
-
-
- instat.ucrNud, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpYAxis
-
-
- 16
-
-
- 443, 61
-
-
- 50, 21
-
-
- 23
-
-
- ucrInputYInStepsOf
-
-
- instat.ucrInputTextBox, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpYAxis
-
-
- 17
-
-
- 433, 88
-
-
- 70, 21
-
-
- 35
-
-
- ucrInputDateBreakTime
-
-
- instat.ucrInputComboBox, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpYAxis
-
-
- 18
-
-
- 279, 90
-
-
- 100, 20
-
-
- 34
-
-
- ucrChkSpecifyDateBreaks
-
-
- instat.ucrCheck, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpYAxis
-
-
- 19
-
-
- 99, 90
-
-
- 141, 21
-
-
- 32
-
-
- ucrInputDateDisplayFormat
-
-
- instat.ucrInputComboBox, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpYAxis
-
-
- 20
-
-
- 284, 61
-
-
- 52, 21
-
-
- 24
-
-
- ucrInputYTo
-
-
- instat.ucrInputTextBox, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpYAxis
-
-
- 21
-
-
- 97, 195
-
-
- 50, 20
-
-
- 33
-
-
- ucrNudYAxisAngle
-
-
- instat.ucrNud, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpYAxis
-
-
- 22
-
-
- 252, 195
-
-
- 50, 20
-
-
- 4
-
-
- ucrNudYAxisLabelSize
-
-
- instat.ucrNud, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpYAxis
-
-
- 23
-
-
- 18, 195
-
-
- 75, 20
-
-
- 32
-
-
- ucrChkYAxisAngle
-
-
- instat.ucrCheck, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpYAxis
-
-
- 24
-
-
- 169, 61
-
-
- 50, 21
-
-
- 25
-
-
- ucrInputYFrom
-
-
- instat.ucrInputTextBox, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpYAxis
-
-
- 25
-
-
- 173, 195
-
-
- 75, 20
-
-
- 31
-
-
- ucrChkYAxisLabelSize
-
-
- instat.ucrCheck, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpYAxis
-
-
- 26
-
-
- 4, 22
-
-
- 3, 3, 3, 3
-
-
- 567, 309
-
-
- 4
-
-
- Y-Axis
-
-
- tpYAxis
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tbPICSA
-
-
- 2
-
-
- ucrInputTercilesLineLabelTextUpper
-
-
- instat.ucrInputTextBox, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpLines
-
-
- 0
-
-
- lblTercilesLineLabelTextUpper
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tpLines
-
-
- 1
-
-
- grpLinesFormat
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tpLines
-
-
- 2
-
-
- lblTercilesLineLabelTextLower
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tpLines
-
-
- 3
-
-
- lblTercilesLineType
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tpLines
-
-
- 4
-
-
- lblMedianLineLabelText
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tpLines
-
-
- 5
-
-
- lblMedianLineType
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tpLines
-
-
- 6
-
-
- lblMeanLineLabelText
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tpLines
-
-
- 7
-
-
- lblMeanLineType
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tpLines
-
-
- 8
-
-
- ucrChkTercilesLineLabelIncludeValue
-
-
- instat.ucrCheck, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpLines
-
-
- 9
-
-
- ucrChkMedianLineLabelIncludeValue
-
-
- instat.ucrCheck, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpLines
-
-
- 10
-
-
- ucrChkMeanLineLabelIncludeValue
-
-
- instat.ucrCheck, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpLines
-
-
- 11
-
-
- ucrInputTercilesLineLabelTextLower
-
-
- instat.ucrInputTextBox, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpLines
-
-
- 12
-
-
- ucrInputTercilesLabelType
-
-
- instat.ucrInputComboBox, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpLines
-
-
- 13
-
-
- ucrInputMedianLineLabelText
-
-
- instat.ucrInputTextBox, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpLines
-
-
- 14
-
-
- ucrInputMedianLabelType
-
-
- instat.ucrInputComboBox, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpLines
-
-
- 15
-
-
- ucrInputMeanLineLabelText
-
-
- instat.ucrInputTextBox, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpLines
-
-
- 16
-
-
- ucrChkAddTercilesLabel
-
-
- instat.ucrCheck, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpLines
-
-
- 17
-
-
- ucrChkAddMedianLabel
-
-
- instat.ucrCheck, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpLines
-
-
- 18
-
-
- ucrInputMeanLabelType
-
-
- instat.ucrInputComboBox, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpLines
-
-
- 19
-
-
- ucrChkAddMean
-
-
- instat.ucrCheck, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpLines
-
-
- 20
-
-
- ucrChkAddMeanLabel
-
-
- instat.ucrCheck, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpLines
-
-
- 21
-
-
- ucrChkAddMedian
-
-
- instat.ucrCheck, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpLines
-
-
- 22
-
-
- ucrChkAddTerciles
-
-
- instat.ucrCheck, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- tpLines
-
-
- 23
-
-
- 4, 22
-
-
- 3, 3, 3, 3
-
-
- 567, 309
-
-
- 2
-
-
- Lines
-
-
- tpLines
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tbPICSA
-
-
- 3
-
-
- grpMinorGridLine
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tpPanel
-
-
- 0
-
-
- grpPnlBorder
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tpPanel
-
-
- 1
-
-
- grpMajorGridLines
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tpPanel
-
-
- 2
-
-
- grpPnlBackground
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tpPanel
-
-
- 3
-
-
- 4, 22
-
-
- 3, 3, 3, 3
-
-
- 567, 309
-
-
- 3
-
-
- Panel
-
-
- tpPanel
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tbPICSA
-
-
- 4
-
-
- 10, 4
-
-
- 575, 335
-
-
- 26
-
-
- tbPICSA
-
-
- System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- $this
-
-
- 0
-
-
- lblYAxisTitleSize
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- grpyAxisTitle
-
-
- 0
-
-
- rdoAutoYAxis
-
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- grpyAxisTitle
-
-
- 1
-
-
- ucrInputYAxisTitle
-
-
- instat.ucrInputTextBox, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- grpyAxisTitle
-
-
- 2
-
-
- rdoNoYAxisTitle
-
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- grpyAxisTitle
-
-
- 3
-
-
- ucrNudYAxisTitleSize
-
-
- instat.ucrNud, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- grpyAxisTitle
-
-
- 4
-
-
- rdoSpecifyYAxisTitle
-
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- grpyAxisTitle
-
-
- 5
-
-
- UcrPnlYAxisTitle
-
-
- instat.UcrPanel, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- grpyAxisTitle
-
-
+
6
-
- 306, 129
+
+ 9, 129
-
+
228, 105
-
- 36
+
+ 18
-
- Y-Axis Title
+
+ X-Axis Title
-
- grpyAxisTitle
+
+ grpAxes
-
+
System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
tpTitles
-
- 0
+
+ 1
-
+
True
-
+
NoControl
-
- 6, 82
+
+ 360, 83
-
- 30, 13
+
+ 69, 13
-
- 45
+
+ 26
-
- Size:
+
+ Caption Size:
-
- lblYAxisTitleSize
+
+ lblCaptionSize
-
+
System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- grpyAxisTitle
+
+ grpGraphTitles
-
+
0
-
+
True
-
+
NoControl
-
- 6, 21
+
+ 360, 53
+
+
+ 75, 13
+
+
+ 27
+
+
+ Sub Title Size:
-
- 50, 17
+
+ lblSubTitleSize
-
- 44
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- Auto
+
+ grpGraphTitles
-
- rdoAutoYAxis
+
+ 1
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ True
-
- grpyAxisTitle
+
+ NoControl
-
- 1
+
+ 361, 23
-
- 6, 44
+
+ 53, 13
-
- 181, 21
+
+ 28
-
- 14
+
+ Title Size:
-
- ucrInputYAxisTitle
+
+ lblTitleSize
-
- instat.ucrInputTextBox, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- grpyAxisTitle
+
+ grpGraphTitles
-
+
2
-
+
True
-
+
NoControl
-
- 142, 21
+
+ 5, 83
-
- 62, 17
+
+ 78, 13
-
- 42
+
+ 23
-
- No Title
+
+ Graph Caption:
-
- rdoNoYAxisTitle
+
+ lblCaption
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- grpyAxisTitle
+
+ grpGraphTitles
-
+
3
-
- 43, 79
+
+ True
-
- 50, 20
+
+ NoControl
-
- 22
+
+ 5, 53
-
- ucrNudYAxisTitleSize
+
+ 84, 13
-
- instat.ucrNud, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+
+ 24
-
- grpyAxisTitle
+
+ Graph Sub Title:
-
+
+ lblSubTitle
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ grpGraphTitles
+
+
4
-
+
True
-
+
NoControl
-
- 67, 21
+
+ 6, 23
-
- 60, 17
+
+ 62, 13
-
- 41
+
+ 25
-
- Specify
+
+ Graph Title:
-
- rdoSpecifyYAxisTitle
+
+ lblTitle
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- grpyAxisTitle
+
+ grpGraphTitles
-
+
5
-
- 6, 15
+
+ 448, 78
-
- 204, 57
+
+ 50, 20
-
- 37
+
+ 22
-
- UcrPnlYAxisTitle
+
+ ucrNudCaptionSize
-
- instat.UcrPanel, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+
+ instat.ucrNud, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
- grpyAxisTitle
+
+ grpGraphTitles
-
+
6
-
- lblXAxisTitleSize
+
+ 448, 48
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 50, 20
-
- grpAxes
+
+ 21
-
- 0
+
+ ucrNudSubTitleSize
-
- rdoAutoXAxis
+
+ instat.ucrNud, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ grpGraphTitles
-
- grpAxes
+
+ 7
-
- 1
+
+ 448, 18
-
- ucrInputXAxisTitle
+
+ 50, 20
-
- instat.ucrInputTextBox, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+
+ 20
-
- grpAxes
+
+ ucrNudTitleSize
-
- 2
+
+ instat.ucrNud, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
- rdoNoTitleXAxisTitle
+
+ grpGraphTitles
+
+
+ 8
+
+
+ 119, 78
+
+
+ 181, 21
+
+
+ 16
+
+
+ ucrInputGraphcCaption
+
+
+ instat.ucrInputTextBox, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ grpGraphTitles
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 9
-
- grpAxes
+
+ 119, 18
-
- 3
+
+ 181, 21
-
- rdoSpecifyXAxisTitle
+
+ 12
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ ucrInputGraphTitle
-
- grpAxes
+
+ instat.ucrInputTextBox, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
- 4
+
+ grpGraphTitles
-
- ucrPnlXAxisTitle
+
+ 10
-
- instat.UcrPanel, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+
+ 119, 48
-
- grpAxes
+
+ 181, 21
-
- 5
+
+ 14
-
- ucrNudXAxisTitleSize
+
+ ucrInputGraphSubTitle
-
- instat.ucrNud, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+
+ instat.ucrInputTextBox, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
- grpAxes
+
+ grpGraphTitles
-
- 6
+
+ 11
-
- 9, 129
+
+ 9, 10
-
- 228, 105
+
+ 525, 110
-
- 18
+
+ 17
-
- X-Axis Title
+
+ Graph
-
- grpAxes
+
+ grpGraphTitles
-
+
System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
tpTitles
-
- 1
-
-
- True
+
+ 2
-
- NoControl
+
+ 4, 22
-
- 6, 82
+
+ 3, 3, 3, 3
-
- 30, 13
+
+ 567, 309
-
- 44
+
+ 0
-
- Size:
+
+ Titles
-
- lblXAxisTitleSize
+
+ tpTitles
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- grpAxes
+
+ tbPICSA
-
+
0
-
- True
+
+ 162, 57
-
- NoControl
+
+ 75, 20
-
- 6, 21
+
+ 30
-
- 50, 17
+
+ ucrChkXAxisLabelSize
-
- 43
+
+ instat.ucrCheck, instat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-
- Auto
+
+ grpXAxisLabels
-
- rdoAutoXAxis
+
+ 0
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 6, 57
-
- grpAxes
+
+ 75, 20
-
- 1
+
+ 29
-
- 6, 44
+
+ ucrChkXAxisAngle
-
- 181, 21
+
+