가이드
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'로 지정한다. 또, 설정 옵션 모델은 TextAnnotationOptions이고, 차트 구성 요소 모델은 TextAnnotation이다.
특별히 type이 지정되지 않은 경우 생성되는 기본 어노테이션이다.

    anntations: [{
        type: 'text',
        text: 'Text 어노테이션',
        rotation: -20,
        style: {
        }
    }]

See Also