HighchartsXAxisOptions constructor

HighchartsXAxisOptions({
  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. HighchartsXAxisCurrentDateIndicatorOptions? currentDateIndicator,
  13. HighchartsXAxisDateTimeLabelFormatsOptions? dateTimeLabelFormats,
  14. bool? endOnTick,
  15. HighchartsXAxisEventsOptions? events,
  16. double? floor,
  17. HighchartsXAxisGridOptions? grid,
  18. String? gridLineColor,
  19. String? gridLineDashStyle,
  20. String? gridLineInterpolation,
  21. double? gridLineWidth,
  22. double? gridZIndex,
  23. dynamic height,
  24. String? id,
  25. HighchartsXAxisLabelsOptions? labels,
  26. dynamic left,
  27. String? lineColor,
  28. double? lineWidth,
  29. double? linkedTo,
  30. double? margin,
  31. dynamic max,
  32. double? maxPadding,
  33. double? maxRange,
  34. double? maxZoom,
  35. dynamic min,
  36. double? minPadding,
  37. double? minRange,
  38. double? minTickInterval,
  39. String? minorGridLineColor,
  40. String? minorGridLineDashStyle,
  41. double? minorGridLineWidth,
  42. String? minorTickColor,
  43. String? minorTickInterval,
  44. double? minorTickLength,
  45. String? minorTickPosition,
  46. double? minorTickWidth,
  47. bool? minorTicks,
  48. double? minorTicksPerMajor,
  49. double? offset,
  50. dynamic opposite,
  51. bool? ordinal,
  52. dynamic overscroll,
  53. double? pane,
  54. bool? panningEnabled,
  55. List<HighchartsXAxisPlotBandsOptions>? plotBands,
  56. List<HighchartsXAxisPlotLinesOptions>? plotLines,
  57. double? range,
  58. bool? reversed,
  59. bool? reversedStacks,
  60. HighchartsXAxisScrollbarOptions? scrollbar,
  61. bool? showEmpty,
  62. bool? showFirstLabel,
  63. bool? showLastLabel,
  64. double? softMax,
  65. double? softMin,
  66. double? startOfWeek,
  67. bool? startOnTick,
  68. double? tickAmount,
  69. String? tickColor,
  70. double? tickInterval,
  71. double? tickLength,
  72. double? tickPixelInterval,
  73. String? tickPosition,
  74. HighchartsCallback? tickPositioner,
  75. List<double>? tickPositions,
  76. double? tickWidth,
  77. String? tickmarkPlacement,
  78. HighchartsXAxisTitleOptions? title,
  79. dynamic top,
  80. String? type,
  81. bool? uniqueNames,
  82. List<List>? units,
  83. bool? visible,
  84. dynamic width,
  85. double? zIndex,
  86. bool? zoomEnabled,
})

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

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

Implementation

HighchartsXAxisOptions(
    {this.accessibility,
    this.alignTicks,
    this.allowDecimals,
    this.alternateGridColor,
    this.angle,
    this.breaks,
    this.categories,
    this.ceiling,
    this.className,
    this.crosshair,
    this.crossing,
    this.currentDateIndicator,
    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.maxPadding,
    this.maxRange,
    this.maxZoom,
    this.min,
    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.ordinal,
    this.overscroll,
    this.pane,
    this.panningEnabled,
    this.plotBands,
    this.plotLines,
    this.range,
    this.reversed,
    this.reversedStacks,
    this.scrollbar,
    this.showEmpty,
    this.showFirstLabel,
    this.showLastLabel,
    this.softMax,
    this.softMin,
    this.startOfWeek,
    this.startOnTick,
    this.tickAmount,
    this.tickColor,
    this.tickInterval,
    this.tickLength,
    this.tickPixelInterval,
    this.tickPosition,
    this.tickPositioner,
    this.tickPositions,
    this.tickWidth,
    this.tickmarkPlacement,
    this.title,
    this.top,
    this.type,
    this.uniqueNames,
    this.units,
    this.visible,
    this.width,
    this.zIndex,
    this.zoomEnabled});