TextPlotXY Method
            Text XY Plot
            
Namespace: Metas.UncLib.Core.MiscAssembly: Metas.UncLib.Core (in Metas.UncLib.Core.dll) Version: 2.9.9435.16862
public static string PlotXY(
	double[] x,
	double[] y,
	int width = 80,
	int height = 24,
	char fillchar = '*'
)
Public Shared Function PlotXY ( 
	x As Double(),
	y As Double(),
	Optional width As Integer = 80,
	Optional height As Integer = 24,
	Optional fillchar As Char = "*"C
) As String
public:
static String^ PlotXY(
	array<double>^ x, 
	array<double>^ y, 
	int width = 80, 
	int height = 24, 
	wchar_t fillchar = L'*'
)
static member PlotXY : 
        x : float[] * 
        y : float[] * 
        ?width : int * 
        ?height : int * 
        ?fillchar : char 
(* Defaults:
        let _width = defaultArg width 80
        let _height = defaultArg height 24
        let _fillchar = defaultArg fillchar '*'
*)
-> string 
- x  Double
 - X
 - y  Double
 - Y
 - width  Int32  (Optional)
 - Width
 - height  Int32  (Optional)
 - Height
 - fillchar  Char  (Optional)
 - Fill Character
 
String