# Type alias IndicatorStyleOptions

IndicatorStyleOptions: NumericSimpleIndicatorStyleOptions | NumericBarIndicatorStyleOptions | GaugeIndicatorStyleOptions & { height: number; width: number; }

Configuration options that define functional style of the various elements of IndicatorChart

# IndicatorStyleOptions.height

height?: number

Total height of the component, which is considered in the following order of priority:

  1. Value passed to this property (in pixels).
  2. Height of the container wrapping this component
  3. Default value of 200px (for component without header) or 225px (for component with header).

# IndicatorStyleOptions.width

width?: number

Total width of the component, which is considered in the following order of priority:

  1. Value passed to this property (in pixels)
  2. Width of the container wrapping this component
  3. Default value of 200px