Welcome to the Flutter feedback portal. We’re happy you’re here! If you have feedback on how to improve the Flutter, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
The label for EMA technical indicator as displayed in the tooltip from trackball behavior is incorrect.
onIndicatorRender: (IndicatorRenderArgs args) {
print('${args.indicatorName} : ${args.indicator.name}');
},Output isflutter: EMA : EMA10

EmaIndicator<ChartData, dynamic>(
name: 'EMA$period',
dataSource: chartData,
xValueMapper: (ChartData data, _) => data.date,
openValueMapper: (ChartData data, _) => data.open,
highValueMapper: (ChartData data, _) => data.high,
lowValueMapper: (ChartData data, _) => data.low,
closeValueMapper: (ChartData data, _) => data.close,
period: period,
);