getRenderOrdinal method

ArcRendererConfig<String> getRenderOrdinal()

Implementation

common.ArcRendererConfig<String> getRenderOrdinal() {
  return common.ArcRendererConfig<String>(
    arcLength: arcLength,
    arcWidth: arcWidth,
    arcRendererDecorators: [
      if (arcLabelDecorator != null) arcLabelDecorator!.getRenderOrdinal(),
    ],
    startAngle: startAngle,
    strokeWidthPx: strokeWidthPx,
    arcRatio: arcRatio,
  );
}