Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitalis95 committed May 24, 2024
1 parent 1ed5964 commit b50169b
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions instat/dlgParallelCoordinatePlot.vb
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,8 @@ Public Class dlgParallelCoordinatePlot
End Sub

Private Sub SetRCodeForControls(bReset As Boolean)
ucrReceiverXVariables.AddAdditionalCodeParameterPair(clsMatchFunction, New RParameter("var", 1, bNewIncludeArgumentName:=False), iAdditionalPairNo:=1)

ucrSelectorParallelCoordinatePlot.SetRCode(clsGGParCoordFunc, bReset)
ucrReceiverFactor.SetRCode(clsGGParCoordFunc, bReset)
ucrChkBoxplots.SetRCode(clsGGParCoordFunc, bReset)
Expand Down Expand Up @@ -433,16 +435,11 @@ Public Class dlgParallelCoordinatePlot
AutoFacetStation()
SetPipeAssignTo()
clsNamesFunction.AddParameter("names", ucrSelectorParallelCoordinatePlot.ucrAvailableDataFrames.cboAvailableDataFrames.Text, iPosition:=0, bIncludeArgumentName:=False)
clsMatchFunction.AddParameter("data", clsRFunctionParameter:=clsNamesFunction, iPosition:=10, bIncludeArgumentName:=False)

clsMatchFunction.AddParameter("data", clsRFunctionParameter:=clsNamesFunction, iPosition:=1, bIncludeArgumentName:=False)
End Sub

Private Sub CoreControls_ControlContentsChanged(ucrChangedControl As ucrCore) Handles ucrReceiverXVariables.ControlContentsChanged, ucrSaveGraph.ControlContentsChanged, ucrNudTransparency.ControlContentsChanged
TestOkEnabled()
End Sub

Private Sub ucrReceiverXVariables_ControlValueChanged(ucrChangedControl As ucrCore) Handles ucrReceiverXVariables.ControlValueChanged
clsMatchFunction.AddParameter("var", ucrReceiverXVariables.GetVariableNames, bIncludeArgumentName:=False, iPosition:=0)
End Sub

End Class

0 comments on commit b50169b

Please sign in to comment.