I want to see the current price on the candle chart.

I want to see the latest price on the candle chart.
How can I do this?





8 Replies 1 reply marked as answer

DP Dharanitharan Palanisamy Syncfusion Team June 16, 2021 01:50 PM UTC

Hi Park, 
 
Greetings from the team at Syncfusion. We have looked over your query and can tell you that you can now change the data labels, using the onDataLabelRender function. We can assign the empty text to all other data labels by checking the point index, and so just the last data label alone is visible. We have attached the sample for your reference ad kindly make use of it. For your required scenario, we have already logged a feature request to represent the last data alone in the axis labels and we cannot provide a date for this because it is not on our forthcoming scheduled list. But we can promise you that it will be included in one of our upcoming versions. The status of this feedback can be tracked using the feedback link below. 
 
 
 
Please revert us if you need any further assistance on this. 
 
Thanks, 
Dharanitharan. P 



PT Park Tae Young June 18, 2021 03:05 AM UTC

Thank you i got this working
I don't want two price to come out.


onDataLabelRender: (DataLabelRenderArgs args) {
if (args.pointIndex != args.dataPoints.length - 1) {
args.text = '1';
} else {
args.text = "test";
}
},


DD Dharanidharan Dharmasivam Syncfusion Team June 22, 2021 01:10 PM UTC

Hi Park, 
 
We have considered the reported scenario as bug at our end and the fix will be included in our upcoming weekly patch release which is expected to be rolled out at the end of this month. 
 
Thanks, 
Dharani. 



DP Dharanitharan Palanisamy Syncfusion Team June 24, 2021 01:53 PM UTC

Hi Park, 
 
We will provide the fix on July 6, 2021, and you may track the status of the bug using the feedback link below. We appreciate your patience until then. 
 
 
Thanks, 
Dharanitharan.P 



DP Dharanitharan Palanisamy Syncfusion Team July 2, 2021 04:21 AM UTC

Hi Park,


Thank you for your patience. We are happy to report that the data label render bug has been resolved, and the data label render event now fires for all data. Please upgrade our charts to the most recent version to fix this.


Latest version: https://pub.dev/packages/syncfusion_flutter_charts/versions/19.2.44+1


Thanks,

Dharanitharan. P


Marked as answer

BH Bilal Hussain September 12, 2026 03:53 AM UTC

To see the current/latest price directly on the candle chart, you'll need a platform that overlays live pricing on the chart itself rather than just showing historical candles. Most standard charting tools display the last closed candle, so you have to hover or check a separate ticker to get the real-time value.


One option worth checking out is this website, which shows live price updates directly on the candle chart, so you can track the current price in real time without switching views. It's a clean setup and does exactly what you're describing.


Alternatively, platforms like TradingView offer a "last price" line you can enable in chart settings, and many broker apps display it by default. But if you want it built-in and simple, the site above is a solid pick.



KR Karen R. Correa September 13, 2026 02:07 AM UTC

If you want to display the current or latest price directly on a candle chart, make sure your charting platform has the real-time price or last-price line enabled. This usually appears as a horizontal line showing the most recent traded price. You can also compare the chart with a reliable market source to confirm the latest value. I came across this website and found its market information useful for checking current prices and following price movements. It may be worth taking a look if you want another source alongside your candle chart.



BP Baranibharathi Pandian Syncfusion Team September 15, 2026 04:18 AM UTC

Hi All,

 

Thank you for your valuable suggestions. We are now proceeding to close this forum. Should you have any further questions or require additional assistance, please do not hesitate to contact us.

 

Regards,

Baranibharathi P.


Loader.
Up arrow icon