getRenderNumeric method
SeriesRendererConfig<num>
getRenderNumeric(
- String? renderId
)
Implementation
common.SeriesRendererConfig<num> getRenderNumeric(String? renderId) {
return common.LineRendererConfig(
customRendererId: renderId,
areaOpacity: areaOpacity,
dashPattern: dashPattern,
includeArea: includeArea,
includeLine: includeLine,
includePoints: includePoints,
radiusPx: radiusPx,
roundEndCaps: roundEndCaps,
strokeWidthPx: strokeWidthPx,
pointRendererDecorators: [
if (showPointLabel)
pointLabelDecorator?.getRenderNumeric() ??
PointLabelDecorator().getRenderNumeric(),
],
);
}