Update candle plot with additional candle
1 view (last 30 days)
Show older comments
Is it somehow possible to update an existing candle-plot without redrawing the whole chart?
Meaning I want to add a candle when new data has arrived. Everytime redrawing the whole chart is rather slow.
0 Comments
Accepted Answer
Mario Malic
on 1 Jan 2021
If you save the handle to the plot, you can access its Data property
h = candle(ax, someData)
h.Data(end+1) = [1 2 3 4];
6 Comments
Mario Malic
on 2 Jan 2021
Edited: Mario Malic
on 2 Jan 2021
You're welcome. You can accept my answer on the blue button, thanks in advance.
More Answers (0)
See Also
Categories
Find more on Discrete Data Plots in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!