/// <summary>
 /// Initializes an instance of SLBubbleChartOptions.
 /// </summary>
 public SLBubbleChartOptions()
 {
     this.Bubble3D            = true;
     this.iBubbleScale        = 100;
     this.ShowNegativeBubbles = true;
     this.SizeRepresents      = C.SizeRepresentsValues.Area;
 }
 /// <summary>
 /// Initializes an instance of SLBubbleChartOptions.
 /// </summary>
 public SLBubbleChartOptions()
 {
     this.Bubble3D = true;
     this.iBubbleScale = 100;
     this.ShowNegativeBubbles = true;
     this.SizeRepresents = C.SizeRepresentsValues.Area;
 }
 internal void MergeOptions(SLBubbleChartOptions bco)
 {
     this.Bubble3D = bco.Bubble3D;
     this.BubbleScale = bco.BubbleScale;
     this.ShowNegativeBubbles = bco.ShowNegativeBubbles;
     this.SizeRepresents = bco.SizeRepresents;
 }
 internal SLChartOptions(List<System.Drawing.Color> ThemeColors)
 {
     this.BarDirection = C.BarDirectionValues.Bar;
     this.BarGrouping = C.BarGroupingValues.Standard;
     this.VaryColors = null;
     this.GapWidth = 150;
     this.GapDepth = 150;
     this.Overlap = 0;
     this.Shape = C.ShapeValues.Box;
     this.Grouping = C.GroupingValues.Standard;
     this.ShowMarker = true;
     this.Smooth = false;
     this.FirstSliceAngle = 0;
     this.HoleSize = 10;
     this.HasSplit = false;
     this.SplitType = C.SplitValues.Position;
     this.SplitPosition = 0;
     this.SecondPiePoints = new List<int>();
     this.SecondPieSize = 75;
     this.SeriesLinesShapeProperties = new SLA.SLShapeProperties(ThemeColors);
     this.ScatterStyle = C.ScatterStyleValues.Line;
     this.bWireframe = null;
     this.RadarStyle = C.RadarStyleValues.Standard;
     this.Bubble3D = true;
     this.BubbleScale = 100;
     this.ShowNegativeBubbles = true;
     this.SizeRepresents = C.SizeRepresentsValues.Area;
 }