示例#1
0
        public void TestMethod1()
        {
            var inputFile  = @"D:\YandexTankAmmo\2016-06-01_15-31-14.PyukpA\phout_oPQuQO.log";
            var outputFile = @"D:\YandexTankAmmo\2016-06-01_15-31-14.PyukpA\graphout.png";
            var columns    = new string[] { "interval_real", "proto_code", "net_code" };

            var plotData = new PhoutTable(inputFile).GetPlotData(columns);

            var plotter = new Plotter(plotData, 2048, 480, drawLegend: true);

            plotter.DrawTo(outputFile);
        }
示例#2
0
        static void Main(params string[] args)
        {
            if (args.Length == 0)
            {
                Console.WriteLine("Parameters not exists");
                Console.WriteLine(ConsoleParamParser.GetParametersHelp());
                return;
            }

            var parser = new ConsoleParamParser(args);

            var plotData = new PhoutTable(parser.InputFileName).GetPlotData(parser.DrawColumnNames);

            var plotter = new Plotter(plotData, parser.HorisontalSize, parser.VerticalSize, drawLegend: true);

            plotter.DrawTo(parser.DrawToFileName);
        }
示例#3
0
        public void TestMethod2()
        {
            var plotData = new List <PlotData>()
            {
                new PlotData {
                    Caption = "123",
                    DataRow = new List <float> {
                        0, 1, 2, 3, 4, 5, 6
                    },
                    Pen        = new Pen(Color.Black),
                    XCoordData = new List <string> {
                        "0", "1", "2", "3", "4", "5", "6"
                    }
                }
            };
            var outputFile = "D:\\graphout.png";
            var plotter    = new Plotter(plotData, 2048, 480, drawLegend: true);

            plotter.DrawTo(outputFile);
        }