HighchartsLegendOptions constructor

HighchartsLegendOptions({
  1. HighchartsLegendAccessibilityOptions? accessibility,
  2. String? align,
  3. bool? alignColumns,
  4. String? backgroundColor,
  5. String? borderColor,
  6. double? borderRadius,
  7. double? borderWidth,
  8. HighchartsLegendBubbleLegendOptions? bubbleLegend,
  9. String? className,
  10. bool? enabled,
  11. HighchartsLegendEventsOptions? events,
  12. bool? floating,
  13. Map<String, String>? itemCheckboxStyle,
  14. double? itemDistance,
  15. Map<String, String>? itemHiddenStyle,
  16. Map<String, String>? itemHoverStyle,
  17. double? itemMarginBottom,
  18. double? itemMarginTop,
  19. Map<String, String>? itemStyle,
  20. double? itemWidth,
  21. String? labelFormat,
  22. HighchartsCallback? labelFormatter,
  23. String? layout,
  24. double? lineHeight,
  25. double? margin,
  26. double? maxHeight,
  27. HighchartsLegendNavigationOptions? navigation,
  28. double? padding,
  29. bool? reversed,
  30. bool? rtl,
  31. Map<String, String>? shadow,
  32. bool? squareSymbol,
  33. Map<String, String>? style,
  34. double? symbolHeight,
  35. double? symbolPadding,
  36. double? symbolRadius,
  37. double? symbolWidth,
  38. HighchartsLegendTitleOptions? title,
  39. bool? useHTML,
  40. double? valueDecimals,
  41. String? valueSuffix,
  42. String? verticalAlign,
  43. dynamic width,
  44. double? x,
  45. double? y,
})

The legend is a box containing a symbol and name for each series item or point item in the chart. Each series (or points in case of pie charts) is represented by a symbol and its name in the legend.

API Docs: https://api.highcharts.com/highcharts/legend

Implementation

HighchartsLegendOptions(
    {this.accessibility,
    this.align,
    this.alignColumns,
    this.backgroundColor,
    this.borderColor,
    this.borderRadius,
    this.borderWidth,
    this.bubbleLegend,
    this.className,
    this.enabled,
    this.events,
    this.floating,
    this.itemCheckboxStyle,
    this.itemDistance,
    this.itemHiddenStyle,
    this.itemHoverStyle,
    this.itemMarginBottom,
    this.itemMarginTop,
    this.itemStyle,
    this.itemWidth,
    this.labelFormat,
    this.labelFormatter,
    this.layout,
    this.lineHeight,
    this.margin,
    this.maxHeight,
    this.navigation,
    this.padding,
    this.reversed,
    this.rtl,
    this.shadow,
    this.squareSymbol,
    this.style,
    this.symbolHeight,
    this.symbolPadding,
    this.symbolRadius,
    this.symbolWidth,
    this.title,
    this.useHTML,
    this.valueDecimals,
    this.valueSuffix,
    this.verticalAlign,
    this.width,
    this.x,
    this.y});