XYAxis constructor

XYAxis({
  1. String? id,
  2. AxisType? type,
  3. String? name,
  4. String? position,
  5. bool? inverse,
  6. dynamic boundaryGap,
  7. dynamic min,
  8. dynamic max,
  9. bool? scale,
  10. int? splitNumber,
  11. int? minInterval,
  12. int? interval,
  13. int? maxInterval,
  14. double? logBase,
  15. bool? silent,
  16. bool? triggerEvent,
  17. AxisLine? axisLine,
  18. AxisTick? axisTick,
  19. AxisLabel? axisLabel,
  20. SplitLine? splitLine,
  21. SplitArea? splitArea,
  22. List? data,
  23. XAxisPointer? axisPointer,
  24. String nameColor = 'rgba(0, 0, 0, 0.1)',
  25. double nameSize = 12,
  26. double fontSize = 10,
  27. String color = 'rgba(0, 0, 0, 0.1)',
  28. bool? show,
  29. Function? formatter,
  30. int? precision,
})

Implementation

XYAxis({
  this.id,
  this.type,
  this.name,
  this.position,
  this.inverse,
  this.boundaryGap,
  this.min,
  this.max,
  this.scale,
  this.splitNumber,
  this.minInterval,
  this.interval,
  this.maxInterval,
  this.logBase,
  this.silent,
  this.triggerEvent,
  this.axisLine,
  this.axisTick,
  this.axisLabel,
  this.splitLine,
  this.splitArea,
  this.data,
  this.axisPointer,
  this.nameColor = 'rgba(0, 0, 0, 0.1)',
  this.nameSize = 12,
  this.fontSize = 10,
  this.color = 'rgba(0, 0, 0, 0.1)',
  this.show,
  this.formatter,
  this.precision,
});