/// <summary>
        ///     Clone a new instance of SLAreaChartOptions.
        /// </summary>
        /// <returns>An SLAreaChartOptions object.</returns>
        public SLAreaChartOptions Clone()
        {
            var aco = new SLAreaChartOptions();

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

            return(aco);
        }
Esempio n. 2
0
 internal void MergeOptions(SLAreaChartOptions aco)
 {
     HasDropLines = aco.HasDropLines;
     DropLines    = aco.DropLines.Clone();
     GapDepth     = aco.GapDepth;
 }