Gets or sets the maximum size of the bubble radius as a percentage of the chart area size.
    
        
            
                | Visual Basic |  Copy Code | 
            
                | 
Imports Dundas.Charting.WebControl
   ...
' Set the Series Max Size to 25% of the chart area.
Chart1.Series(0)("BubbleMaxSize") = "25"
 | 
        
    
 
    
        
            
                | C# |  Copy Code | 
            
                | 
using Dundas.Charting.WebControl;
  ...
// Set the Series Max Size to 25% of the chart area.
Chart1.Series[0]["BubbleMaxSize"] = "25";
 | 
        
    
 
Remarks
Gets or sets the maximum size of the bubble radius as a percentage of the chart area size. 
    
        
            | Custom Attribute Summary | 
        
            | Possible Values: | Ranges from 0 to 100. | 
        
            | Default Value: | 15 | 
        
            | 2D / 3D Limitations: | No | 
        
            | Applies to Chart Element: | Series Objects | 
        
            | Applies to Chart Types: | Bubble | 
    
            
             See Also
See Also