"setSeriesColorStyle"
    
    Defines the color style for the given series.
Synopsis
shape.setSeriesColorStyle(int series, string style);
Parameter
| Parameter | Description | 
|---|---|
| series | Series index | 
| style | Color style for the series | 
Description
Defines the color style for the given series. The following styles are available:
- 
                    
"ColorStyleUniform" - objects are rendered in a single color
 - 
                    
"ColorStyleObjectGradient" - objects are colored using a full gradient for each object regardless of object height
 - 
                    
"ColorStyleRangeGradient" - objects are colored using a portion of the full gradient determined by the object's height
 
Please refer to the BarChart3D description for further information.
 Example
main() 
{
  BarChart3D_ewo1.setSeriesColorStyle(1,
  "ColorStyleUniform");
}
        Assignment
BarChart3D-EWO
