HighchartsYAxisOptions constructor

HighchartsYAxisOptions({
  1. HighchartsXAxisAccessibilityOptions? accessibility,
  2. bool? alignTicks,
  3. bool? allowDecimals,
  4. String? alternateGridColor,
  5. double? angle,
  6. List<HighchartsXAxisBreaksOptions>? breaks,
  7. List<String>? categories,
  8. double? ceiling,
  9. String? className,
  10. HighchartsXAxisCrosshairOptions? crosshair,
  11. double? crossing,
  12. HighchartsXAxisDateTimeLabelFormatsOptions? dateTimeLabelFormats,
  13. bool? endOnTick,
  14. HighchartsXAxisEventsOptions? events,
  15. double? floor,
  16. HighchartsXAxisGridOptions? grid,
  17. String? gridLineColor,
  18. String? gridLineDashStyle,
  19. String? gridLineInterpolation,
  20. double? gridLineWidth,
  21. double? gridZIndex,
  22. dynamic height,
  23. String? id,
  24. HighchartsYAxisLabelsOptions? labels,
  25. dynamic left,
  26. String? lineColor,
  27. double? lineWidth,
  28. double? linkedTo,
  29. double? margin,
  30. dynamic max,
  31. String? maxColor,
  32. dynamic maxLength,
  33. double? maxPadding,
  34. double? maxRange,
  35. double? maxZoom,
  36. dynamic min,
  37. String? minColor,
  38. dynamic minLength,
  39. double? minPadding,
  40. double? minRange,
  41. double? minTickInterval,
  42. String? minorGridLineColor,
  43. String? minorGridLineDashStyle,
  44. double? minorGridLineWidth,
  45. String? minorTickColor,
  46. String? minorTickInterval,
  47. double? minorTickLength,
  48. String? minorTickPosition,
  49. double? minorTickWidth,
  50. bool? minorTicks,
  51. double? minorTicksPerMajor,
  52. double? offset,
  53. bool? opposite,
  54. double? pane,
  55. bool? panningEnabled,
  56. List<HighchartsYAxisPlotBandsOptions>? plotBands,
  57. List<HighchartsYAxisPlotLinesOptions>? plotLines,
  58. double? range,
  59. HighchartsYAxisResizeOptions? resize,
  60. bool? reversed,
  61. bool? reversedStacks,
  62. HighchartsYAxisScrollbarOptions? scrollbar,
  63. bool? showEmpty,
  64. bool? showFirstLabel,
  65. bool? showLastLabel,
  66. double? softMax,
  67. double? softMin,
  68. HighchartsYAxisStackLabelsOptions? stackLabels,
  69. HighchartsYAxisStackShadowOptions? stackShadow,
  70. double? startOfWeek,
  71. bool? startOnTick,
  72. double? staticScale,
  73. List<List>? stops,
  74. double? tickAmount,
  75. String? tickColor,
  76. double? tickInterval,
  77. double? tickLength,
  78. double? tickPixelInterval,
  79. String? tickPosition,
  80. HighchartsCallback? tickPositioner,
  81. List<double>? tickPositions,
  82. double? tickWidth,
  83. String? tickmarkPlacement,
  84. HighchartsYAxisTitleOptions? title,
  85. String? tooltipValueFormat,
  86. dynamic top,
  87. String? type,
  88. bool? uniqueNames,
  89. List<List>? units,
  90. bool? visible,
  91. dynamic width,
  92. double? zIndex,
  93. bool? zoomEnabled,
})

The Y axis or value axis. Normally this is the vertical axis, though if the chart is inverted this is the horizontal axis. In case of multiple axes, the yAxis node is an array of configuration objects.

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

Implementation

HighchartsYAxisOptions(
    {this.accessibility,
    this.alignTicks,
    this.allowDecimals,
    this.alternateGridColor,
    this.angle,
    this.breaks,
    this.categories,
    this.ceiling,
    this.className,
    this.crosshair,
    this.crossing,
    this.dateTimeLabelFormats,
    this.endOnTick,
    this.events,
    this.floor,
    this.grid,
    this.gridLineColor,
    this.gridLineDashStyle,
    this.gridLineInterpolation,
    this.gridLineWidth,
    this.gridZIndex,
    this.height,
    this.id,
    this.labels,
    this.left,
    this.lineColor,
    this.lineWidth,
    this.linkedTo,
    this.margin,
    this.max,
    this.maxColor,
    this.maxLength,
    this.maxPadding,
    this.maxRange,
    this.maxZoom,
    this.min,
    this.minColor,
    this.minLength,
    this.minPadding,
    this.minRange,
    this.minTickInterval,
    this.minorGridLineColor,
    this.minorGridLineDashStyle,
    this.minorGridLineWidth,
    this.minorTickColor,
    this.minorTickInterval,
    this.minorTickLength,
    this.minorTickPosition,
    this.minorTickWidth,
    this.minorTicks,
    this.minorTicksPerMajor,
    this.offset,
    this.opposite,
    this.pane,
    this.panningEnabled,
    this.plotBands,
    this.plotLines,
    this.range,
    this.resize,
    this.reversed,
    this.reversedStacks,
    this.scrollbar,
    this.showEmpty,
    this.showFirstLabel,
    this.showLastLabel,
    this.softMax,
    this.softMin,
    this.stackLabels,
    this.stackShadow,
    this.startOfWeek,
    this.startOnTick,
    this.staticScale,
    this.stops,
    this.tickAmount,
    this.tickColor,
    this.tickInterval,
    this.tickLength,
    this.tickPixelInterval,
    this.tickPosition,
    this.tickPositioner,
    this.tickPositions,
    this.tickWidth,
    this.tickmarkPlacement,
    this.title,
    this.tooltipValueFormat,
    this.top,
    this.type,
    this.uniqueNames,
    this.units,
    this.visible,
    this.width,
    this.zIndex,
    this.zoomEnabled});