axisBottomReserved static method
Space below the plot for x-axis tick labels plus the optional x-axis title, so neither crowds the plot nor clips the bottom edge.
Implementation
static double axisBottomReserved(ChartConfig config) {
var height = 0.0;
if (config.showAxis) {
height += _axisLabelBand;
}
if (_hasText(config.xAxisTitle)) {
height += _axisTitleBand;
}
return height;
}