Accord.Tests.Statistics.DataBarBoxText.DataBarBox_ShowTest1 C# (CSharp) Method

DataBarBox_ShowTest1() private method

private DataBarBox_ShowTest1 ( ) : void
return void
        public void DataBarBox_ShowTest1()
        {
            double[] data = new double[] { 100.0, 150.0, 42.0 };
            string[] labels = { "1", "2", "3" };

            DataBarBox.Show(labels, data)
                .Hold();
        }
DataBarBoxText