CartesianChartStructureData constructor

const CartesianChartStructureData({
  1. CartesianChartOrientation orientation = CartesianChartOrientation.vertical,
  2. num xUnitValue = 1,
  3. num yUnitValue = 10,
  4. num? maxXValue,
  5. num? maxYValue,
})

Represents data that can influence the structuring of a chart.

Implementation

const CartesianChartStructureData({
  this.orientation = CartesianChartOrientation.vertical,
  this.xUnitValue = 1,
  this.yUnitValue = 10,
  this.maxXValue,
  this.maxYValue,
});