Update candle plot with additional candle
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Ali Komai
el 1 de En. de 2021
Editada: Mario Malic
el 2 de En. de 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 comentarios
Respuesta aceptada
Mario Malic
el 1 de En. de 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 comentarios
Mario Malic
el 2 de En. de 2021
Editada: Mario Malic
el 2 de En. de 2021
You're welcome. You can accept my answer on the blue button, thanks in advance.
Más respuestas (0)
Ver también
Categorías
Más información sobre Creating, Deleting, and Querying Graphics Objects en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!