Accord.Controls.HistogramBox.SetBinWidth C# (CSharp) Метод

SetBinWidth() публичный Метод

Sets the bins width in the histogram.
public SetBinWidth ( double width ) : HistogramBox
width double The bin width to be used.
Результат HistogramBox
        public HistogramBox SetBinWidth(double width)
        {
            if (this.InvokeRequired)
            {
                this.Invoke((Action)(() => SetBinWidth(width)));
                return this;
            }

            histogramView1.BinWidth = width;
            histogramView1.UpdateGraph();

            Refresh();

            return this;
        }