Ejemplo n.º 1
0
        /// <summary>
        /// Clone a new instance of SLAreaChartOptions.
        /// </summary>
        /// <returns>An SLAreaChartOptions object.</returns>
        public SLAreaChartOptions Clone()
        {
            SLAreaChartOptions aco = new SLAreaChartOptions();

            aco.HasDropLines = this.HasDropLines;
            aco.DropLines    = this.DropLines.Clone();
            aco.iGapDepth    = this.iGapDepth;

            return(aco);
        }
 internal void MergeOptions(SLAreaChartOptions aco)
 {
     this.HasDropLines = aco.HasDropLines;
     this.DropLines    = aco.DropLines.Clone();
     this.GapDepth     = aco.GapDepth;
 }