XContainer constructor

XContainer({
  1. required ChartTopContainer chartTopContainer,
  2. LabelLayoutStrategy? xContainerLabelLayoutStrategy,
})

Constructs the container that holds X labels.

The passed LayoutExpansion is (assumed) to direct the expansion to fill all available horizontal space, and only use necessary vertical space.

Implementation

XContainer({
  required ChartTopContainer chartTopContainer,
  strategy.LabelLayoutStrategy? xContainerLabelLayoutStrategy,
}) : super(
        chartTopContainer: chartTopContainer,
        xContainerLabelLayoutStrategy: xContainerLabelLayoutStrategy,
      );