RangePlot2D.Graphs
This property Creates a graph. This property is read only.
C# Example
Creating a Range Plot from a C# node:
#r STATISTICA.Core.Interop.dll using System; using System.IO; using System.Runtime.InteropServices; using STATISTICA; using STATISTICAGraphics; //Note: run this example in a C# node try { string sVars = "2 | 3 | 4"; Analysis ana = Application.Analysis(AnalysisIdentifier.sc2dRange, InputContainer[0]); RangePlot2D pdlg = (RangePlot2D)ana.Dialog; pdlg.set_Variables(sVars); pdlg.GraphType = TypeOfRangePlot.scRangeWhiskers; OutputContainer.Add(pdlg.Graphs); } catch(Exception e) { Console.WriteLine($"Error: Unable to create graph. {e.Message}"); }
Copyright © 2020. Cloud Software Group, Inc. All Rights Reserved.