internal void MergeOptions(SLBubbleChartOptions bco)
 {
     this.Bubble3D            = bco.Bubble3D;
     this.BubbleScale         = bco.BubbleScale;
     this.ShowNegativeBubbles = bco.ShowNegativeBubbles;
     this.SizeRepresents      = bco.SizeRepresents;
 }
Exemplo n.º 2
0
        internal SLBubbleChartOptions Clone()
        {
            SLBubbleChartOptions bco = new SLBubbleChartOptions();

            bco.Bubble3D            = this.Bubble3D;
            bco.iBubbleScale        = this.iBubbleScale;
            bco.ShowNegativeBubbles = this.ShowNegativeBubbles;
            bco.SizeRepresents      = this.SizeRepresents;

            return(bco);
        }