SymbolAnnotationRendererConfig<D> constructor

SymbolAnnotationRendererConfig<D>({
  1. String? customRendererId,
  2. List<PointRendererDecorator<D>>? pointRendererDecorators,
  3. double radiusPx = 5.0,
  4. SymbolRenderer? symbolRenderer,
  5. Map<String, SymbolRenderer>? customSymbolRenderers,
  6. bool showBottomSeparatorLine = false,
  7. bool showSeparatorLines = true,
  8. double verticalSymbolBottomPaddingPx = 5.0,
  9. double verticalSymbolTopPaddingPx = 5.0,
})

Implementation

SymbolAnnotationRendererConfig({
  super.customRendererId,
  List<PointRendererDecorator<D>>? pointRendererDecorators,
  super.radiusPx = 5.0,
  super.symbolRenderer,
  super.customSymbolRenderers,
  this.showBottomSeparatorLine = false,
  this.showSeparatorLines = true,
  this.verticalSymbolBottomPaddingPx = 5.0,
  this.verticalSymbolTopPaddingPx = 5.0,
}) : super(
        pointRendererDecorators: pointRendererDecorators ??
            [
              ComparisonPointsDecorator<D>(
                symbolRenderer: RectangleRangeSymbolRenderer(),
              ),
            ],
      );