ChartOptions.noLabels constructor

const ChartOptions.noLabels()

Convenience constructor sets all values to default except labels and gridlines are defined not to show.

Implementation

const ChartOptions.noLabels()
    : this(
        legendOptions: const LegendOptions(
          isLegendContainerShown: false,
        ),
        xContainerOptions: const XContainerOptions(
          isXContainerShown: false,
        ),
        yContainerOptions: const YContainerOptions(
          isYContainerShown: false,
          isYGridlinesShown: false,
        ),
      );