internal SLBarChartOptions Clone()
        {
            SLBarChartOptions bco = new SLBarChartOptions();

            bco.iGapWidth = this.iGapWidth;
            bco.iGapDepth = this.iGapDepth;
            bco.byOverlap = this.byOverlap;

            return(bco);
        }
 internal void MergeOptions(SLBarChartOptions bco)
 {
     this.GapWidth = bco.GapWidth;
     this.GapDepth = bco.GapDepth;
     this.Overlap  = bco.Overlap;
 }