LineChartSettings constructor

const LineChartSettings({
  1. int xAxisDivisions = 3,
  2. int yAxisDivisions = 2,
  3. int? xAxisLabelQuantity,
  4. AxisDivisionEdges axisDivisionEdges = AxisDivisionEdges.none,
  5. bool showAxisX = true,
  6. bool showAxisXSelectedLabelIfConcealed = false,
  7. bool showAxisY = true,
  8. bool lineFilling = true,
  9. bool lineShadow = true,
  10. bool altitudeLine = true,
  11. LimitLabelSnapPosition limitLabelSnapPosition = LimitLabelSnapPosition.axis,
  12. bool showAxisXLabels = true,
  13. bool showAxisYLabels = true,
  14. bool showAxisXLabelSelection = false,
  15. bool showPoint = true,
  16. bool showTooltip = true,
  17. bool selectionEnabled = true,
})

Constructs an instance of LineChartSettings.

Implementation

const LineChartSettings({
  this.xAxisDivisions = 3,
  this.yAxisDivisions = 2,
  this.xAxisLabelQuantity,
  this.axisDivisionEdges = AxisDivisionEdges.none,
  this.showAxisX = true,
  this.showAxisXSelectedLabelIfConcealed = false,
  this.showAxisY = true,
  this.lineFilling = true,
  this.lineShadow = true,
  this.altitudeLine = true,
  this.limitLabelSnapPosition = LimitLabelSnapPosition.axis,
  this.showAxisXLabels = true,
  this.showAxisYLabels = true,
  this.showAxisXLabelSelection = false,
  this.showPoint = true,
  this.showTooltip = true,
  this.selectionEnabled = true,
});