BaseBarRendererConfig<D> constructor

BaseBarRendererConfig<D>({
  1. int barGroupInnerPaddingPx = 2,
  2. String? customRendererId,
  3. List<int>? dashPattern,
  4. BarGroupingType groupingType = BarGroupingType.grouped,
  5. int? layoutPaintOrder,
  6. int minBarLengthPx = 0,
  7. int? maxBarWidthPx,
  8. FillPatternType? fillPattern,
  9. int stackedBarPaddingPx = 1,
  10. double strokeWidthPx = 0.0,
  11. SymbolRenderer? symbolRenderer,
  12. List<int>? weightPattern,
})

Implementation

BaseBarRendererConfig(
    {this.barGroupInnerPaddingPx = 2,
    this.customRendererId,
    this.dashPattern,
    this.groupingType = BarGroupingType.grouped,
    this.layoutPaintOrder,
    this.minBarLengthPx = 0,
    this.maxBarWidthPx,
    this.fillPattern,
    this.stackedBarPaddingPx = 1,
    this.strokeWidthPx = 0.0,
    SymbolRenderer? symbolRenderer,
    this.weightPattern})
    : symbolRenderer = symbolRenderer ?? RoundedRectSymbolRenderer();