"setSeriesMeshType"
    
    Defines the shape of the bars.
Synopsis
shape.columnName (int series, string type);
Parameter
| Parameter | Description | 
|---|---|
| series | Series index | 
| type | Bar shape | 
Description
Defines the shape of the bars. The following shapes are available:
- 
                    
"MeshBar" - Basic rectangular bar
 - 
                    
"MeshCube" - Basic cube
 - 
                    
"MeshPyramid" - Four-sided Pyramid
 - 
                    
"MeshCone" - Basic cube
 - 
                    
"MeshCylinder" - Cylinder
 - 
                    
"MeshBevelBar" - Slightly beveled (rounded) rectangular bar
 - 
                    
"MeshBevelCube" - Slightly beveled (rounded) cube
 - 
                    
"MeshSphere" - Sphere
 
 Example
main()
{
  BarChart3D_ewo1.setSeriesMeshType(1,
  "MeshCylinder");
}
        Assignment
BarChart3D-EWO