SymbolAnnotationRendererConfig<D> constructor
SymbolAnnotationRendererConfig<D> ({
- String? customRendererId,
- List<
PointRendererDecorator< ? pointRendererDecorators,D> > - double radiusPx = 5.0,
- SymbolRenderer? symbolRenderer,
- Map<
String, SymbolRenderer> ? customSymbolRenderers, - bool showBottomSeparatorLine = false,
- bool showSeparatorLines = true,
- double verticalSymbolBottomPaddingPx = 5.0,
- 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(),
),
],
);