HighchartsYAxisStackLabelsOptions constructor

HighchartsYAxisStackLabelsOptions({
  1. String? align,
  2. bool? allowOverlap,
  3. HighchartsYAxisStackLabelsAnimationOptions? animation,
  4. String? backgroundColor,
  5. String? borderColor,
  6. double? borderRadius,
  7. double? borderWidth,
  8. bool? crop,
  9. bool? enabled,
  10. String? format,
  11. HighchartsCallback? formatter,
  12. String? overflow,
  13. double? rotation,
  14. HighchartsYAxisStackLabelsStyleOptions? style,
  15. String? textAlign,
  16. bool? useHTML,
  17. String? verticalAlign,
  18. double? x,
  19. double? y,
})

The stack labels show the total value for each bar in a stacked column or bar chart. The label will be placed on top of positive columns and below negative columns. In case of an inverted column chart or a bar chart the label is placed to the right of positive bars and to the left of negative bars.

API Docs: https://api.highcharts.com/highcharts/yAxis.stackLabels

Implementation

HighchartsYAxisStackLabelsOptions(
    {this.align,
    this.allowOverlap,
    this.animation,
    this.backgroundColor,
    this.borderColor,
    this.borderRadius,
    this.borderWidth,
    this.crop,
    this.enabled,
    this.format,
    this.formatter,
    this.overflow,
    this.rotation,
    this.style,
    this.textAlign,
    this.useHTML,
    this.verticalAlign,
    this.x,
    this.y});