getRenderBarO method

BarRendererConfig<String> getRenderBarO()

Implementation

common.BarRendererConfig<String> getRenderBarO() {
  return common.BarRendererConfig(
    barGroupInnerPaddingPx: barGroupInnerPaddingPx,
    fillPattern: MethodCommon.fillPattern(fillPattern),
    groupingType: _getBarGroupingType(barGroupingType),
    cornerStrategy: common.ConstCornerStrategy(radius),
    maxBarWidthPx: maxBarWidthPx,
    minBarLengthPx: minBarLengthPx,
    stackedBarPaddingPx: stackedBarPaddingPx,
    strokeWidthPx: strokeWidthPx,
    weightPattern: weightPattern,
    barRendererDecorator: showBarLabel
        ? barLabelDecorator?.getRenderOrdinal() ??
            BarLabelDecorator().getRenderOrdinal()
        : null,
  );
}