drawFigure method
Implementation
@override
TextSpan? drawFigure(
CandleEntity entity, int precision, KChartColors chartColors) {
double? value = entity.sar;
if (value == null) return null;
return TextSpan(
text: "SAR: ${formatNumber(value, precision)}",
style: TextStyle(
fontSize: 10,
color: indicatorStyle.sarColor,
),
);
}