AngleAxis constructor

const AngleAxis({
  1. num offsetAngle = 0,
  2. num sweepAngle = 360,
  3. num radiusOffset = 0,
  4. bool clockwise = true,
  5. AxisPointer axisPointer = const AxisPointer(),
  6. LineStyle? subAxisStyle = const LineStyle(color: Colors.black45),
  7. LineStyle? tipLineStyle = const LineStyle(color: Colors.black54, dash: [2, 6]),
  8. bool show = true,
  9. String name = '',
  10. AxisType type = AxisType.value,
  11. num min = 0,
  12. num? max,
  13. int splitNumber = 5,
  14. bool start0 = false,
  15. num logBase = 10,
  16. num? interval,
  17. num? maxInterval,
  18. num minInterval = 0,
  19. List<String> categoryList = const [],
  20. Pair<DateTime>? timeRange,
  21. TimeSplitType timeSplitType = TimeSplitType.day,
  22. bool silent = false,
  23. AxisLine axisLine = const AxisLine(),
  24. FormatterFun<num>? formatFun,
  25. Align2 nameAlign = Align2.end,
  26. num nameGap = 3,
  27. LabelStyle nameStyle = const LabelStyle(),
})

Implementation

const AngleAxis({
  this.offsetAngle = 0,
  this.sweepAngle = 360,
  this.radiusOffset = 0,
  this.clockwise = true,
  this.axisPointer = const AxisPointer(),
  this.subAxisStyle = const LineStyle(color: Colors.black45),
  this.tipLineStyle = const LineStyle(color: Colors.black54, dash: [2, 6]),
  super.show,
  super.name,
  super.type = AxisType.value,
  super.min,
  super.max,
  super.splitNumber,
  super.start0,
  super.logBase,
  super.interval,
  super.maxInterval,
  super.minInterval,
  super.categoryList,
  super.timeRange,
  super.timeSplitType,
  super.silent,
  super.axisLine,
  super.formatFun,
  super.nameAlign,
  super.nameGap,
  super.nameStyle,
}) : super(inverse: false);