DateTimeCategoryAxis constructor

DateTimeCategoryAxis({
  1. String? name,
  2. bool? isVisible,
  3. AxisTitle? title,
  4. AxisLine? axisLine,
  5. ChartRangePadding? rangePadding,
  6. EdgeLabelPlacement? edgeLabelPlacement,
  7. ChartDataLabelPosition? labelPosition,
  8. TickPosition? tickPosition,
  9. int? labelRotation,
  10. AxisLabelIntersectAction? labelIntersectAction,
  11. LabelAlignment? labelAlignment,
  12. bool? isInversed,
  13. bool? opposedPosition,
  14. int? minorTicksPerInterval,
  15. int? maximumLabels,
  16. MajorTickLines? majorTickLines,
  17. MinorTickLines? minorTickLines,
  18. MajorGridLines? majorGridLines,
  19. MinorGridLines? minorGridLines,
  20. TextStyle? labelStyle,
  21. double? plotOffset,
  22. double? zoomFactor,
  23. double? zoomPosition,
  24. InteractiveTooltip? interactiveTooltip,
  25. DateTime? minimum,
  26. DateTime? maximum,
  27. double? interval,
  28. DateTime? visibleMinimum,
  29. DateTime? visibleMaximum,
  30. dynamic crossesAt,
  31. String? associatedAxisName,
  32. bool? placeLabelsNearAxisLine,
  33. List<PlotBand>? plotBands,
  34. int? desiredIntervals,
  35. RangeController? rangeController,
  36. double? maximumLabelWidth,
  37. double? labelsExtent,
  38. LabelPlacement labelPlacement = LabelPlacement.betweenTicks,
  39. DateFormat? dateFormat,
  40. DateTimeIntervalType intervalType = DateTimeIntervalType.auto,
  41. DateTimeIntervalType autoScrollingDeltaType = DateTimeIntervalType.auto,
  42. int? autoScrollingDelta,
  43. double? borderWidth,
  44. Color? borderColor,
  45. AxisBorderType? axisBorderType,
  46. MultiLevelLabelStyle? multiLevelLabelStyle,
  47. MultiLevelLabelFormatterCallback? multiLevelLabelFormatter,
  48. List<DateTimeCategoricalMultiLevelLabel>? multiLevelLabels,
  49. AutoScrollingMode? autoScrollingMode,
  50. ChartLabelFormatterCallback? axisLabelFormatter,
})

Creating an argument constructor of DateTimeCategoryAxis class.

Implementation

DateTimeCategoryAxis(
    {String? name,
    bool? isVisible,
    AxisTitle? title,
    AxisLine? axisLine,
    ChartRangePadding? rangePadding,
    EdgeLabelPlacement? edgeLabelPlacement,
    ChartDataLabelPosition? labelPosition,
    TickPosition? tickPosition,
    int? labelRotation,
    AxisLabelIntersectAction? labelIntersectAction,
    LabelAlignment? labelAlignment,
    bool? isInversed,
    bool? opposedPosition,
    int? minorTicksPerInterval,
    int? maximumLabels,
    MajorTickLines? majorTickLines,
    MinorTickLines? minorTickLines,
    MajorGridLines? majorGridLines,
    MinorGridLines? minorGridLines,
    TextStyle? labelStyle,
    double? plotOffset,
    double? zoomFactor,
    double? zoomPosition,
    InteractiveTooltip? interactiveTooltip,
    this.minimum,
    this.maximum,
    double? interval,
    this.visibleMinimum,
    this.visibleMaximum,
    dynamic crossesAt,
    String? associatedAxisName,
    bool? placeLabelsNearAxisLine,
    List<PlotBand>? plotBands,
    int? desiredIntervals,
    RangeController? rangeController,
    double? maximumLabelWidth,
    double? labelsExtent,
    this.labelPlacement = LabelPlacement.betweenTicks,
    this.dateFormat,
    this.intervalType = DateTimeIntervalType.auto,
    this.autoScrollingDeltaType = DateTimeIntervalType.auto,
    int? autoScrollingDelta,
    double? borderWidth,
    Color? borderColor,
    AxisBorderType? axisBorderType,
    MultiLevelLabelStyle? multiLevelLabelStyle,
    MultiLevelLabelFormatterCallback? multiLevelLabelFormatter,
    List<DateTimeCategoricalMultiLevelLabel>? multiLevelLabels,
    AutoScrollingMode? autoScrollingMode,
    ChartLabelFormatterCallback? axisLabelFormatter})
    : super(
          name: name,
          isVisible: isVisible,
          isInversed: isInversed,
          plotOffset: plotOffset,
          rangePadding: rangePadding,
          opposedPosition: opposedPosition,
          edgeLabelPlacement: edgeLabelPlacement,
          labelRotation: labelRotation,
          labelPosition: labelPosition,
          tickPosition: tickPosition,
          labelIntersectAction: labelIntersectAction,
          minorTicksPerInterval: minorTicksPerInterval,
          maximumLabels: maximumLabels,
          labelAlignment: labelAlignment,
          labelStyle: labelStyle,
          title: title,
          axisLine: axisLine,
          majorTickLines: majorTickLines,
          minorTickLines: minorTickLines,
          majorGridLines: majorGridLines,
          minorGridLines: minorGridLines,
          zoomFactor: zoomFactor,
          zoomPosition: zoomPosition,
          interactiveTooltip: interactiveTooltip,
          interval: interval,
          crossesAt: crossesAt,
          associatedAxisName: associatedAxisName,
          placeLabelsNearAxisLine: placeLabelsNearAxisLine,
          plotBands: plotBands,
          desiredIntervals: desiredIntervals,
          rangeController: rangeController,
          maximumLabelWidth: maximumLabelWidth,
          labelsExtent: labelsExtent,
          autoScrollingDelta: autoScrollingDelta,
          axisBorderType: axisBorderType,
          borderColor: borderColor,
          borderWidth: borderWidth,
          multiLevelLabelStyle: multiLevelLabelStyle,
          multiLevelLabelFormatter: multiLevelLabelFormatter,
          multiLevelLabels: multiLevelLabels,
          autoScrollingMode: autoScrollingMode,
          axisLabelFormatter: axisLabelFormatter);