# Plot does not update with a string vector as an observable in Makie

**URL:** https://discourse.julialang.org/t/plot-does-not-update-with-a-string-vector-as-an-observable-in-makie/75503
**Category:** Visualization
**Tags:** plotting, makie, glmakie, animations
**Created:** [January 31, 2022, 12:57pm UTC](https://discourse.julialang.org/t/plot-does-not-update-with-a-string-vector-as-an-observable-in-makie/75503 "2022-01-31T12:57:27Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![fnoessler](https://avatars.discourse-cdn.com/v4/letter/f/eb9ed0/32.png) [@fnoessler](https://discourse.julialang.org/u/fnoessler)
#### Post date: [January 31, 2022, 12:57pm UTC](https://discourse.julialang.org/t/plot-does-not-update-with-a-string-vector-as-an-observable-in-makie/75503/1 "2022-01-31T12:57:27Z")

</div>

Hello,

I tried to use a vector of strings as an Observable and the text! command to interactively update a plot in Makie. Here is an example:

```julia
using GLMakie

string_vec = Observable(["a", "b"])
string_test = Observable("changeable")

fig = Figure()
Axis(fig[1,1])
text!(string_vec, position=[(1,1), (1.2, 1)])
text!(string_test, position=(1.1, 0.5))

string_vec[] = ["c", "d"] # not updating the plot
string_test[] = "worked!"

```

It only works with a string as the observable, but not with a vector of strings. Do you have an idea what I am doing wrong? Many thanks!
