๊ฐ€์ด๋“œ
Text Annotation

Text Annotation

ํ…์ŠคํŠธ๋ฅผ ์ฐจํŠธ๋‚˜ body(์‹œ๋ฆฌ์ฆˆ๊ฐ€ ํ‘œ์‹œ๋˜๋Š” plotting ์˜์—ญ)์˜ ์ง€์ •ํ•œ ์œ„์น˜์— ํ‘œ์‹œํ•œ๋‹ค.

text๋ฅผ rich text๋กœ ์„ค์ •ํ•  ์ˆ˜ ์žˆ๋‹ค.
๋˜, ๋‹ค๋ฅธ ์–ด๋…ธํ…Œ์ด์…˜๊ณผ ๋งˆ์ฐฌ๊ฐ€์ง€๋กœ front ์„ค์ •์— ๋”ฐ๋ผ ์‹œ๋ฆฌ์ฆˆ ๋“ฑ ๊ธฐ์กด ๊ตฌ์„ฑ ์š”์†Œ๋“ค ์•„๋ž˜ ๋˜๋Š” ์œ„์— ํ‘œ์‹œ๋  ์ˆ˜ ์žˆ์œผ๋ฉฐ, rotation์„ ์ง€์ •ํ•ด์„œ ํšŒ์ „ ์‹œํ‚ฌ ์ˆ˜๋„ ์žˆ๋‹ค. align, verticalAlign์œผ๋กœ ์ˆ˜ํ‰ ์ˆ˜์ง ์œ„์น˜๋ฅผ ์ง€์ •ํ•˜๊ณ , offsetX, offsetY๋กœ ๊ฐ„๊ฒฉ์„ ์„ค์ •ํ•œ๋‹ค.
'Text Annotation 4'๋Š” align์ด 'right'์ด๋‹ค. 'Text Annotation 5'๋Š” align์ด 'right'์ด๊ณ , verticalAlign์ด 'bottom'์ด๋‹ค.
'Text Annotation 3', 'Text Annotation 5'๋Š” front๊ฐ€ true๋กœ ์ง€์ •๋ผ์„œ ์‹œ๋ฆฌ์ฆˆ ์œ„์— ํ‘œ์‹œ๋œ๋‹ค.
'Text Annotation 10'์€ ์ฐจํŠธ์˜ annotation์ด๊ณ , ๋‚˜๋จธ์ง€๋Š” body์˜ annotation๋“ค์ด๋‹ค.

์„ค์ •

'type'์„ 'text'๋กœ ์ง€์ •ํ•œ๋‹ค.

    anntations: [{
        type: 'text',
        text: 'Text ์–ด๋…ธํ…Œ์ด์…˜',
        rotation: -20,
        style: {
        }
    }]

'type'์„ ์ง€์ •ํ•˜์ง€ ์•Š๊ณ , shape๋‚˜ imageUrl ์ง€์ •์ด ์—†์œผ๋ฉด 'text'๋กœ ์ง€์ •ํ•œ ๊ฒƒ๊ณผ ๋™์ผํ•˜๋‹ค.

    anntations: [{
        text: 'Text ์–ด๋…ธํ…Œ์ด์…˜',
    }]

See Also