setBarShadowColor method

void setBarShadowColor(
  1. Color color
)

Sets the color used for drawing the bar-shadows. The bar shadows is a surface behind the bar that indicates the maximum value. Don't for get to use getResources().getColor(...) to set this. Or Color.rgb(...).

@param color

Implementation

void setBarShadowColor(Color color) {
  _barShadowColor = color;
}