RadiusAxis constructor

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

Implementation

const RadiusAxis({
  this.nameLocation = Align2.end,
  this.offsetAngle = 0,
  this.nameRotate = 0,
  this.itemStyleFun,
  this.axisStyleFun,
  this.tipLineStyle=const LineStyle(color: Colors.black54,dash: [2,6]),
  super.show,
  super.name,
  super.nameGap = 15,
  super.nameAlign,
  super.nameStyle,
  super.type = AxisType.value,
  super.min,
  super.max,
  super.splitNumber,
  super.start0,
  super.logBase,
  super.interval,
  super.maxInterval,
  super.minInterval,
  super.inverse,
  super.categoryList,
  super.timeRange,
  super.timeSplitType,
  super.silent,
  super.axisLine,
  super.formatFun,
});