Gets or sets the maximum DataPoint width in pixels.
    
        
            
                | Visual Basic |  Copy Code | 
            
                | 
Imports Dundas.Charting.WebControl
   ...
' Set the Series MaxPixelPointWidth.
Chart1.Series(0)("MaxPixelPointWidth") = "10"
 | 
        
    
 
    
        
            
                | C# |  Copy Code | 
            
                | 
using Dundas.Charting.WebControl;
  ...
// Set the Series MaxPixelPointWidth.
Chart1.Series[0]["MaxPixelPointWidth"] = "10";
 | 
        
    
 
Remarks
Gets or sets the maximum DataPoint width in pixels. 
    
        
            | Custom Attribute Summary | 
        
            | Possible Values: | Any integer > 0 | 
        
            | Default Value: | 0 | 
        
            | 2D / 3D Limitations: | No | 
        
            | Applies to Chart Element: | Series Objects | 
        
            | Applies to Chart Types: | Bar, CandleStick, Column, StackedBar, StackedBar100, StackedColumn, StackedColumn100, Stock, BoxPlot, ErrorBar, Gantt, RangeColumn | 
    
 
    
        
            |  |  | 
        
            | Figure 1: MaxPixelPointWidth not set shown left, and MaxPixelPointWidth set to 10 pixels shown right. | 
    
            
             See Also
See Also