# Is there a way to change font of \`series\_annotations\` in the \`scatter\` plot in Plots?

**URL:** https://discourse.julialang.org/t/is-there-a-way-to-change-font-of-series-annotations-in-the-scatter-plot-in-plots/54035
**Category:** General Usage
**Tags:** plotting
**Created:** [January 27, 2021, 6:09am UTC](https://discourse.julialang.org/t/is-there-a-way-to-change-font-of-series-annotations-in-the-scatter-plot-in-plots/54035 "2021-01-27T06:09:25Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![paalon](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/paalon/32/5784_2.png) [@paalon](https://discourse.julialang.org/u/paalon)
#### Post date: [January 27, 2021, 6:09am UTC](https://discourse.julialang.org/t/is-there-a-way-to-change-font-of-series-annotations-in-the-scatter-plot-in-plots/54035/1 "2021-01-27T06:09:25Z")

</div>

Is there a way to change font of `series_annotations` in the `scatter` plot in Plots?

```julia
using Plots
f = font(13, "Noto Sans CJK JP")
default(
    titlefont = f,
    legendfont = f,
    guidefont = f,
    tickfont = f)
pyplot()

data_x = rand(3)
data_y = rand(3)
data_label = ["あ", "い", "う"]

scatter(
    data_x,
    data_y,
    title = "散布図",
    series_annotations = data_label)

```
