legendReservedTop static method

double legendReservedTop(
  1. ChartConfig config
)

Implementation

static double legendReservedTop(ChartConfig config) {
  if (!config.showLegend) return 0;
  return config.legendPosition == LegendPosition.top ? _legendHeight : 0;
}