Update candle plot with additional candle
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Ali Komai
am 1 Jan. 2021
Bearbeitet: Mario Malic
am 2 Jan. 2021
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 Kommentare
Akzeptierte Antwort
Mario Malic
am 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 Kommentare
Mario Malic
am 2 Jan. 2021
Bearbeitet: Mario Malic
am 2 Jan. 2021
You're welcome. You can accept my answer on the blue button, thanks in advance.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Discrete Data Plots finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!