public void BuildKAndBDistributionsChart(DoubleNumericDistribution distribution)
        {
            _temp.Write("");
            for (var i = 1; i < 11; i++)
            {
                _temp.Write(i);
            }
            _temp.WriteLine();

            _temp.SetPos1();

            for (var i = 1; i < 11; i++)
            {
                _temp.Write(i);
                for (var j = (i - 1) * 10; j < (i - 1) * 10 + 10; j++)
                {
                    _temp.Write(distribution.Parts.ElementAt(j).NumericsAmount);
                }
                _temp.WriteLine();
            }

            _temp.GoBack();
            _temp.SetPos2();

            _temp.Create3DChart("KnBDistribution", "Распределение по K и B",
                                _main, new[] { "K", "Количество человек", "B" });

            _temp.WriteLine();
        }