Esempio n. 1
0
 internal void MergeOptions(SLBubbleChartOptions bco)
 {
     Bubble3D            = bco.Bubble3D;
     BubbleScale         = bco.BubbleScale;
     ShowNegativeBubbles = bco.ShowNegativeBubbles;
     SizeRepresents      = bco.SizeRepresents;
 }
        internal SLBubbleChartOptions Clone()
        {
            var bco = new SLBubbleChartOptions();

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

            return(bco);
        }