getRenderPointN method

PointRendererConfig<num> getRenderPointN()

Implementation

common.PointRendererConfig<num> getRenderPointN() {
  return common.PointRendererConfig(
    radiusPx: radiusPx,
    strokeWidthPx: strokeWidthPx,
    symbolRenderer: symbolRender?.getRenderer(),
    pointRendererDecorators: [
      if (showPointLabel)
        pointLabelDecorator?.getRenderNumeric() ??
            PointLabelDecorator().getRenderNumeric(),
      if (showComparisonPoint)
        common.ComparisonPointsDecorator(
          symbolRenderer: comparisonSymbolRender.getRenderer(),
        ),
    ],
  );
}