ArcRendererConfig<D> constructor
ArcRendererConfig<D> ({
- String? customRendererId,
- double arcLength = 2 * pi,
- List<
ArcRendererDecorator< arcRendererDecorators = const [],D> > - double? arcRatio,
- int? arcWidth,
- int layoutPaintOrder = LayoutViewPaintOrder.arc,
- int minHoleWidthForCenterContent = 30,
- double startAngle = -pi / 2,
- double strokeWidthPx = 2.0,
- SymbolRenderer? symbolRenderer,
Implementation
ArcRendererConfig(
{String? customRendererId,
double arcLength = 2 * pi,
List<ArcRendererDecorator<D>> arcRendererDecorators = const [],
double? arcRatio,
int? arcWidth,
int layoutPaintOrder = LayoutViewPaintOrder.arc,
int minHoleWidthForCenterContent = 30,
double startAngle = -pi / 2,
double strokeWidthPx = 2.0,
SymbolRenderer? symbolRenderer})
: super(
customRendererId: customRendererId,
arcLength: arcLength,
arcRatio: arcRatio,
arcWidth: arcWidth,
layoutPaintOrder: layoutPaintOrder,
minHoleWidthForCenterContent: minHoleWidthForCenterContent,
startAngle: startAngle,
strokeWidthPx: strokeWidthPx,
arcRendererDecorators: arcRendererDecorators);