Accord.Controls.ScatterplotBox.SetScaleTight C# (CSharp) 메소드

SetScaleTight() 공개 메소드

Sets whether to remove the grace space between the axis labels and points.
public SetScaleTight ( bool tight ) : ScatterplotBox
tight bool
리턴 ScatterplotBox
        public ScatterplotBox SetScaleTight(bool tight)
        {
            if (this.InvokeRequired)
            {
                this.Invoke((Action)(() => SetScaleTight(tight)));
                return this;
            }

            scatterplotView1.ScaleTight = tight;
            scatterplotView1.UpdateGraph();

            Refresh();

            return this;
        }