@operato/scene-chartjs 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (114) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/LICENSE +21 -0
  3. package/README.md +21 -0
  4. package/assets/bar-chart.png +0 -0
  5. package/assets/doughnut-chart.png +0 -0
  6. package/assets/horizontal-bar-chart.png +0 -0
  7. package/assets/line-chart.png +0 -0
  8. package/assets/mixed-chart.png +0 -0
  9. package/assets/pie-chart.png +0 -0
  10. package/assets/polar-area-chart.png +0 -0
  11. package/assets/radar-chart.png +0 -0
  12. package/demo/bar.html +266 -0
  13. package/demo/chartjs.html +73 -0
  14. package/demo/index.html +547 -0
  15. package/demo/legend.html +267 -0
  16. package/demo/things-scene-chartjs.html +7 -0
  17. package/dist/chartjs.d.ts +27 -0
  18. package/dist/chartjs.js +109 -0
  19. package/dist/chartjs.js.map +1 -0
  20. package/dist/config-converter.d.ts +1 -0
  21. package/dist/config-converter.js +343 -0
  22. package/dist/config-converter.js.map +1 -0
  23. package/dist/editors/index.d.ts +5 -0
  24. package/dist/editors/index.js +11 -0
  25. package/dist/editors/index.js.map +1 -0
  26. package/dist/editors/property-editor-chartjs-abstract.d.ts +44 -0
  27. package/dist/editors/property-editor-chartjs-abstract.js +250 -0
  28. package/dist/editors/property-editor-chartjs-abstract.js.map +1 -0
  29. package/dist/editors/property-editor-chartjs-hbar.d.ts +9 -0
  30. package/dist/editors/property-editor-chartjs-hbar.js +160 -0
  31. package/dist/editors/property-editor-chartjs-hbar.js.map +1 -0
  32. package/dist/editors/property-editor-chartjs-mixed.d.ts +20 -0
  33. package/dist/editors/property-editor-chartjs-mixed.js +193 -0
  34. package/dist/editors/property-editor-chartjs-mixed.js.map +1 -0
  35. package/dist/editors/property-editor-chartjs-multi-series-abstract.d.ts +31 -0
  36. package/dist/editors/property-editor-chartjs-multi-series-abstract.js +373 -0
  37. package/dist/editors/property-editor-chartjs-multi-series-abstract.js.map +1 -0
  38. package/dist/editors/property-editor-chartjs-pie.d.ts +14 -0
  39. package/dist/editors/property-editor-chartjs-pie.js +70 -0
  40. package/dist/editors/property-editor-chartjs-pie.js.map +1 -0
  41. package/dist/editors/property-editor-chartjs-radar.d.ts +10 -0
  42. package/dist/editors/property-editor-chartjs-radar.js +42 -0
  43. package/dist/editors/property-editor-chartjs-radar.js.map +1 -0
  44. package/dist/editors/property-editor-chartjs-styles.d.ts +1 -0
  45. package/dist/editors/property-editor-chartjs-styles.js +165 -0
  46. package/dist/editors/property-editor-chartjs-styles.js.map +1 -0
  47. package/dist/editors/property-editor-chartjs.d.ts +14 -0
  48. package/dist/editors/property-editor-chartjs.js +83 -0
  49. package/dist/editors/property-editor-chartjs.js.map +1 -0
  50. package/dist/index.d.ts +5 -0
  51. package/dist/index.js +8 -0
  52. package/dist/index.js.map +1 -0
  53. package/dist/ox-chart.d.ts +20 -0
  54. package/dist/ox-chart.js +137 -0
  55. package/dist/ox-chart.js.map +1 -0
  56. package/dist/plugins/chart-series-highlight.d.ts +5 -0
  57. package/dist/plugins/chart-series-highlight.js +37 -0
  58. package/dist/plugins/chart-series-highlight.js.map +1 -0
  59. package/dist/plugins/chartjs-plugin-data-binder.d.ts +5 -0
  60. package/dist/plugins/chartjs-plugin-data-binder.js +111 -0
  61. package/dist/plugins/chartjs-plugin-data-binder.js.map +1 -0
  62. package/helps/scene/component/chartjs.ko.md +332 -0
  63. package/helps/scene/component/chartjs.md +333 -0
  64. package/helps/scene/component/chartjs.zh.md +331 -0
  65. package/helps/scene/images/chart-bar-01.png +0 -0
  66. package/helps/scene/images/chart-bar-02.png +0 -0
  67. package/helps/scene/images/chart-bar-03.png +0 -0
  68. package/helps/scene/images/chart-bar-08.png +0 -0
  69. package/helps/scene/images/chart-bar-12.png +0 -0
  70. package/helps/scene/images/chart-data-01.png +0 -0
  71. package/helps/scene/images/chart-data-04.png +0 -0
  72. package/helps/scene/images/chart-doughnut-01.png +0 -0
  73. package/helps/scene/images/chart-horizontal-bar-01.png +0 -0
  74. package/helps/scene/images/chart-line-01.png +0 -0
  75. package/helps/scene/images/chart-mix-01.png +0 -0
  76. package/helps/scene/images/chart-mix-02.png +0 -0
  77. package/helps/scene/images/chart-pie-01.png +0 -0
  78. package/helps/scene/images/chart-polar-01.png +0 -0
  79. package/helps/scene/images/chart-radar-01.png +0 -0
  80. package/package.json +78 -0
  81. package/src/chartjs.ts +134 -0
  82. package/src/config-converter.ts +401 -0
  83. package/src/editors/index.ts +11 -0
  84. package/src/editors/property-editor-chartjs-abstract.ts +301 -0
  85. package/src/editors/property-editor-chartjs-hbar.ts +163 -0
  86. package/src/editors/property-editor-chartjs-mixed.ts +204 -0
  87. package/src/editors/property-editor-chartjs-multi-series-abstract.ts +393 -0
  88. package/src/editors/property-editor-chartjs-pie.ts +79 -0
  89. package/src/editors/property-editor-chartjs-radar.ts +43 -0
  90. package/src/editors/property-editor-chartjs-styles.ts +165 -0
  91. package/src/editors/property-editor-chartjs.ts +88 -0
  92. package/src/index.ts +7 -0
  93. package/src/ox-chart.ts +150 -0
  94. package/src/plugins/chart-series-highlight.ts +43 -0
  95. package/src/plugins/chartjs-plugin-data-binder.ts +138 -0
  96. package/src/scene-chart.d.ts +152 -0
  97. package/templates/bar-chart.js +124 -0
  98. package/templates/doughnut-chart.js +58 -0
  99. package/templates/horizontal-bar-chart.js +121 -0
  100. package/templates/index.js +22 -0
  101. package/templates/line-chart.js +155 -0
  102. package/templates/mixed-chart.js +152 -0
  103. package/templates/pie-chart.js +58 -0
  104. package/templates/polar-area-chart.js +92 -0
  105. package/templates/radar-chart.js +98 -0
  106. package/test/basic-test.html +61 -0
  107. package/test/index.html +20 -0
  108. package/things-scene.config.js +7 -0
  109. package/translations/en.json +5 -0
  110. package/translations/ko.json +5 -0
  111. package/translations/ms.json +5 -0
  112. package/translations/zh.json +5 -0
  113. package/tsconfig.json +22 -0
  114. package/tsconfig.tsbuildinfo +1 -0
@@ -0,0 +1,332 @@
1
+ # **Chart**
2
+
3
+ ## 1. 공통
4
+
5
+ ### 1.1. 공통 속성
6
+
7
+ * 테마 - 차트의 테마를 변경. 'light'와 'dark' 두가지를 지원
8
+ * 범례 - 차트의 범례를 표시.
9
+ * 위치 - 상(top), 하(buttom), 좌(left), 우(right) 네방향으로 배치할 수 있다.
10
+ * 2축 - Y축을 좌우 2축으로 표현 여부, 2축 선택 시 Y보조축 및 Y보조축 옵션이 표현된다.
11
+
12
+ ### 1.2. X축
13
+
14
+ * 데이터 참조 - 차트가 표현할 데이터의 필드명. X축에 표현될 데이터의 필드명을 입력한다. 아래와 같은 데이터를 표시할 시 'Date'가 된다.
15
+ ![Chart-bar-테마][chart-bar-01]
16
+ * 제목 - X축에 원하는 제목(라벨) 입력
17
+ * 그리드 라인 - 세로방향의 눈금선 표현 여부
18
+ ![X축 그리드][chart-bar-08]
19
+ * 눈금 표시 - X축 눈금 표시 여부
20
+
21
+ ### 1.3. Y축
22
+
23
+ * 제목 - Y축에 원하는 제목(라벨) 입력
24
+ * 최소값 자동 - 최소값 자동 선택 시 자동으로 최개값과 스텝을 적용하여 눈금 계산
25
+ * 최소값 - 최소값 자동 해제 시 표시가 되며 눈금 최소값을 설정할 수 있다.
26
+ * 최대값 자동 - 최대값 자동 선택 시 자동으로 최개값과 스텝을 적용하여 눈금 계산
27
+ * 최대값 - 최대값 자동 해제 시 표시가 되며 눈금 최대값을 설정할 수 있다.
28
+ * 스텝 - 눈금 간격 설정
29
+ * 그리드 라인 - 가로방향의 눈금선 표현 여부
30
+ ![Y축 그리드][chart-bar-12]
31
+ * 눈금 표시 - Y축 눈금 표시 여부
32
+
33
+ ---
34
+
35
+ ## 2. Mix Chart(수직 막대/라인 차트)
36
+ * 데이터를 막대모양과 라인모양의 형태를 섞어서 표현해주는 차트. __(믹스차트의 속성은 막대차트와 라인차트와 동일합니다.)__
37
+ * 데이터를 막대모양 또는 라인모양의 형태로 표현하거나 막대와 라인을 믹스해서 표현 가능. 여러개의 시리즈(필드)가 있을시엔 병렬막대 또는 누적막대로 표현이 가능
38
+ ![chart-mix-차트 타입][chart-mix-02]
39
+
40
+ [chart-mix-02]: ../images/chart-mix-02.png
41
+ ### 2.1. 시리즈
42
+
43
+ * 버튼 "+"를 사용하여 데이터의 시리즈를 여러개 추가할 수 있다.
44
+ * **공통**
45
+ * 데이터 참조 - 시리즈별로 참조하는 원본 데이터에서 Y축에 표현될 데이터의 필드명를 정의,
46
+ 아래와 같은 데이터를 표시할 시 Series의 Data-Key는 'Good'과 'Bad'가 된다.
47
+ ![Data Refer][chart-bar-01]
48
+ * 유형 - 해당 시리즈를 라인(line)차트로 표현할지 아니면 바차(bar)트로 표현할지
49
+ * 라벨 - 범례명
50
+ * 색상 - 차트에 표현될 시리즈의 색상 지정
51
+ * 누적 그룹 - 동일한 누적 그룹에 포함되어 있는 시리즈들의 값을 누적하여 그라프에 표현한다.
52
+ ![누적 그룹][chart-bar-02]
53
+ * 대상 축 - 2축 적용 시 대상축에 대한 설정 필드가 나타나는데, 대상축은 해당 시리즈의 정보가 참조하는 축(축의 눈금)을 가르킨다.
54
+ ![대상 축][chart-bar-03]
55
+ * 접두사 - 값 표시가 될 때(마우스 오버, 값표시 등) 값의 접두사로 적용할 문자(예: data: 100, 접두사: $ => 결과: $100 )
56
+ * 접미사 - 값 표시가 될 때(마우스 오버, 값표시 등) 값의 접미사로 적용할 문자(예: data: 100, 접미사: 원 => 결과: 100원 )
57
+ * 값표시 - 해당 시리즈의 데이터를 화면에 표현여부를 결정한다.
58
+ 값표시가 선택되면 아래와 같은 항목이 나타난다.
59
+ * 폰트 색상 - 시리즈 중 표시된 값의 색상 설정
60
+ * 크기 - 시리즈 내 폰트 크기 설정
61
+ * 위치 - 시리즈 내 폰트위치 설정
62
+
63
+ * **유형이 line인 경우**
64
+ * 긴장도 - 직선을 사용한 그래프(angled), 부드러운 선을 사용한 그래프(smooth)
65
+ * 경계부분 넓이 - 라인의 굵기 설정
66
+ * 포인트 모양 - 라인의 각 꼭지점의 포인트 모양
67
+ * 포인트 크기 - 라인의 각 꼭지점의 크기
68
+ * 채우기 - 라인이 그려진 공간을 공통 속정의 색상을 이용하여 데이터를 표시하는 도형을 채운다.
69
+
70
+ ### 2.2. X축
71
+
72
+ * 알반 - [공통 속성](#1.2.-X축)에서 정의한 내용과 같음
73
+ * 막대 간격 - 막대와 막대 사이의 간격이며 막대의 크기에 영향 준다.
74
+ * 눈금 간격 - 눈금 사이의 간격이며 막대의 크기에 영향 준다.
75
+
76
+ ### 2.3. Y축
77
+
78
+ * [공통 속성](#1.3.-Y축)에서 정의한 내용과 같음
79
+
80
+ ### 2.4. Y보조축(2축 선택 시 표현 됨)
81
+
82
+ * 설정 속성은 Y축 설정 방법과 같다.
83
+
84
+
85
+ [chart-bar-01]: ../images/chart-bar-01.png
86
+
87
+ [chart-bar-02]: ../images/chart-bar-02.png
88
+
89
+ [chart-bar-03]: ../images/chart-bar-03.png
90
+
91
+ [chart-bar-08]: ../images/chart-bar-08.png
92
+
93
+ [chart-bar-12]: ../images/chart-bar-12.png
94
+
95
+
96
+ ---
97
+
98
+ ## 3. 수평 막대 차트
99
+
100
+ 데이터를 가로 막대모양의 형태로 표현해주는 차트. 여러개의 필드가 있을시엔 병렬막대 또는 누적막대로 표현이 가능
101
+
102
+ ### 3.1. 공통 속성
103
+
104
+ * 테마 - 차트의 테마를 변경. 'light'와 'dark' 두가지를 지원
105
+ * 범례 - 차트의 범례를 표시.
106
+ * 위치 - 상(top), 하(buttom), 좌(left), 우(right) 네방향으로 배치할 수 있다.
107
+ * 2축 - Y축을 좌우 2축으로 표현 여부, 2축 선택 시 Y보조축 및 Y보조축 옵션이 표현된다.
108
+
109
+
110
+ ### 3.2. 시리즈
111
+
112
+ * 버튼 "+"를 사용하여 데이터의 시리즈를 여러개 추가할 수 있다.
113
+ * **공통**
114
+ * 데이터 참조 - 시리즈별로 참조하는 원본 데이터에서 Y축에 표현될 데이터의 필드명를 정의, 아래와 같은 데이터를 표시할 시 Series의 Data-Key는 'Good'과 'Bad'가 된다
115
+ * 라벨 - 범례명
116
+ * 색상 - 차트에 표현될 시리즈의 색상 지정
117
+ * 누적 그룹 - 동일한 누적 그룹에 포함되어 있는 시리즈들의 값을 누적하여 그라프에 표현한다.
118
+ * 대상 축 - 2축 적용 시 대상축에 대한 설정 필드가 나타나는데, 대상축은 해당 시리즈의 정보가 참조하는 축(축의 눈금)을 가르킨다.
119
+ * 접두사 - 값 표시가 될 때(마우스 오버, 값표시 등) 값의 접두사로 적용할 문자(예: data: 100, 접두사: $ => 결과: $100 )
120
+ * 접미사 - 값 표시가 될 때(마우스 오버, 값표시 등) 값의 접미사로 적용할 문자(예: data: 100, 접미사: 원 => 결과: 100원 )
121
+ * 값표시 - 해당 시리즈의 데이터를 화면에 표현여부를 결정한다.
122
+ 값표시가 선택되면 아래와 같은 항목이 나타난다.
123
+ * 폰트 색상 - 시리즈 중 표시된 값의 색상 설정
124
+ * 크기 - 시리즈 내 폰트 크기 설정
125
+ * 위치 - 시리즈 내 폰트위치 설정
126
+
127
+ ### 3.3. X축
128
+
129
+ * 데이터 참조 - 차트가 표현할 데이터의 필드명. X축에 표현될 데이터의 필드명을 입력한다. 아래와 같은 데이터를 표시할 시 'Date'가 된다.
130
+ * 제목 - X축에 원하는 제목(라벨) 입력
131
+ * 그리드 라인 - 세로방향의 눈금선 표현 여부
132
+ * 눈금 표시 - X축 눈금 표시 여부
133
+
134
+ ### 3.4. Y축
135
+
136
+ * 제목 - Y축에 원하는 제목(라벨) 입력
137
+ * 최소값 자동 - 최소값 자동 선택 시 자동으로 최개값과 스텝을 적용하여 눈금 계산
138
+ * 최소값 - 최소값 자동 해제 시 표시가 되며 눈금 최소값을 설정할 수 있다.
139
+ * 최대값 자동 - 최대값 자동 선택 시 자동으로 최개값과 스텝을 적용하여 눈금 계산
140
+ * 최대값 - 최대값 자동 해제 시 표시가 되며 눈금 최대값을 설정할 수 있다.
141
+ * 스텝 - 눈금 간격 설정
142
+ * 그리드 라인 - 가로방향의 눈금선 표현 여부
143
+ * 눈금 표시 - Y축 눈금 표시 여부
144
+
145
+
146
+ [chart-horizontal-bar-01]: ../images/chart-horizontal-bar-01.png
147
+
148
+ ---
149
+ ## 4. 라인 차트
150
+
151
+ 데이터를 라인모양의 형태로 표현해주는 차트. (중복되는 속성은 막대차트를 참조)
152
+
153
+ ### 4.1. 속성
154
+
155
+ * 테마 - 차트의 테마를 변경. 'light'와 'dark' 두가지를 지원
156
+ * 범례 - 차트의 범례를 표시.
157
+ * 위치 - 상(top), 하(buttom), 좌(left), 우(right) 네방향으로 배치할 수 있다.
158
+ * 2축 - Y축을 좌우 2축으로 표현 여부, 2축 선택 시 Y보조축 및 Y보조축 옵션이 표현된다.
159
+
160
+ ### 4.2. 시리즈
161
+
162
+ * 버튼 "+"를 사용하여 데이터의 시리즈를 여러개 추가할 수 있다.
163
+ * **공통**
164
+ * 데이터 참조 - 시리즈별로 참조하는 원본 데이터에서 Y축에 표현될 데이터의 필드명를 정의, 아래와 같은 데이터를 표시할 시 Series의 Data-Key는 'Good'과 'Bad'가 된다.
165
+ ![Data Refer][chart-line-01]
166
+ * 긴장도 - 직선을 사용한 그래프(angled), 부드러운 선을 사용한 그래프(smooth)
167
+ * 경계부분 넓이 - 라인의 굵기 설정
168
+ * 라벨 - 범례명
169
+ * 색상 - 차트에 표현될 시리즈의 색상 지정
170
+ * 포인트 모양 - 라인의 각 꼭지점의 포인트 모양
171
+ * 포인트 크기 - 라인의 각 꼭지점의 크기
172
+ * 누적 그룹 - 동일한 누적 그룹에 포함되어 있는 시리즈들의 값을 누적하여 그라프에 표현한다.
173
+ * 채우기 - 라인이 그려진 공간을 공통 속정의 색상을 이용하여 데이터를 표시하는 도형을 채운다.
174
+ * 대상 축 - 2축 적용 시 대상축에 대한 설정 필드가 나타나는데, 대상축은 해당 시리즈의 정보가 참조하는 축(축의 눈금)을 가르킨다.
175
+ * 접두사 - 값 표시가 될 때(마우스 오버, 값표시 등) 값의 접두사로 적용할 문자(예: data: 100, 접두사: $ => 결과: $100 )
176
+ * 접미사 - 값 표시가 될 때(마우스 오버, 값표시 등) 값의 접미사로 적용할 문자(예: data: 100, 접미사: 원 => 결과: 100원 )
177
+ * 값표시 - 해당 시리즈의 데이터를 화면에 표현여부를 결정한다. 값표시가 선택되면 아래와 같은 항목이 나타난다.
178
+ * 폰트 색상 - 시리즈 중 표시된 값의 색상 설정
179
+ * 크기 - 시리즈 내 폰트 크기 설정
180
+ * 위치 - 시리즈 내 폰트위치 설정
181
+
182
+ ### 4.3. X축
183
+
184
+ * 데이터 참조 - 차트가 표현할 데이터의 필드명. X축에 표현될 데이터의 필드명을 입력한다. 아래와 같은 데이터를 표시할 시 'Date'가 된다.
185
+ * 제목 - X축에 원하는 제목(라벨) 입력
186
+ * 그리드 라인 - 세로방향의 눈금선 표현 여부
187
+ * 눈금 표시 - X축 눈금 표시 여부
188
+
189
+ ### 4.4. Y축
190
+ * 제목 - Y축에 원하는 제목(라벨) 입력
191
+ * 최소값 자동 - 최소값 자동 선택 시 자동으로 최개값과 스텝을 적용하여 눈금 계산
192
+ * 최소값 - 최소값 자동 해제 시 표시가 되며 눈금 최소값을 설정할 수 있다.
193
+ * 최대값 자동 - 최대값 자동 선택 시 자동으로 최개값과 스텝을 적용하여 눈금 계산
194
+ * 최대값 - 최대값 자동 해제 시 표시가 되며 눈금 최대값을 설정할 수 있다.
195
+ * 스텝 - 눈금 간격 설정
196
+ * 그리드 라인 - 가로방향의 눈금선 표현 여부
197
+ * 눈금 표시 - Y축 눈금 표시 여부
198
+
199
+ [chart-line-01]: ../images/chart-line-01.png
200
+
201
+ ---
202
+ ## 5. 레이더 차트
203
+
204
+ 데이터를 레이더 모양으로 표현해주는 차트. 원형 차트의 데이터를 여러개의 라인 형태로 표현
205
+ ### 5.1. 공통 속성
206
+
207
+ * 테마 - 차트의 테마를 변경. 'light'와 'dark' 두가지를 지원
208
+ * 범례 - 차트의 범례를 표시.
209
+ * 위치 - 상(top), 하(buttom), 좌(left), 우(right) 네방향으로 배치할 수 있다.
210
+
211
+ ### 5.2. 시리즈
212
+
213
+ * 버튼 "+"를 사용하여 데이터의 시리즈를 여러개 추가할 수 있다.
214
+ * **공통**
215
+ * 데이터 참조 - 시리즈별로 참조하는 원본 데이터에서 Y축에 표현될 데이터의 필드명를 정의, 아래와 같은 데이터를 표시할 시 Series의 Data-Key는 'Good'과 'Bad'가 된다.
216
+ ![Data Refer][chart-radar-01]
217
+ * 라벨 - 범례명
218
+ * 색상 - 차트에 표현될 시리즈의 색상 지정
219
+ * 누적 그룹 - 동일한 누적 그룹에 포함되어 있는 시리즈들의 값을 누적하여 그라프에 표현한다.
220
+ * 접두사 - 값 표시가 될 때(마우스 오버, 값표시 등) 값의 접두사로 적용할 문자(예: data: 100, 접두사: $ => 결과: $100 )
221
+ * 접미사 - 값 표시가 될 때(마우스 오버, 값표시 등) 값의 접미사로 적용할 문자(예: data: 100, 접미사: 원 => 결과: 100원 )
222
+ * 값표시 - 해당 시리즈의 데이터를 화면에 표현여부를 결정한다. 값표시가 선택되면 아래와 같은 항목이 나타난다.
223
+ * 폰트 색상 - 시리즈 중 표시된 값의 색상 설정
224
+ * 크기 - 시리즈 내 폰트 크기 설정
225
+ * 위치 - 시리즈 내 폰트위치 설정
226
+
227
+ ### 5.3. 축
228
+ * 데이터 참조 - 시리즈별로 참조하는 원본 데이터에서 Y축에 표현될 데이터의 필드명를 정의, 아래와 같은 데이터를 표시할 시 참조할 데이터는 line이 된다.
229
+ ![Data Refer][chart-radar-01]
230
+
231
+ [chart-radar-01]: ../images/chart-radar-01.png
232
+
233
+ ---
234
+
235
+ ## 6. 폴라 차트
236
+
237
+ 데이터를 극좌표 모양으로 표현해주는 차트.
238
+
239
+ ### 6.1. 공통 속성
240
+
241
+ * 테마 - 차트의 테마를 변경. 'light'와 'dark' 두가지를 지원
242
+ * 범례 - 차트의 범례를 표시.
243
+ * 위치 - 상(top), 하(buttom), 좌(left), 우(right) 네방향으로 배치할 수 있다.
244
+
245
+ ### 6.2. 시리즈
246
+
247
+ * 버튼 "+"를 사용하여 데이터의 시리즈를 여러개 추가할 수 있다.
248
+ * **공통**
249
+ * 데이터 참조 - 시리즈별로 참조하는 원본 데이터에서 Y축에 표현될 데이터의 필드명를 정의, 아래와 같은 데이터를 표시할 시 Series의 Data-Key는 'Good'가 된다.
250
+ ![Data Refer][chart-polar-01]
251
+ * 라벨 - 범례명
252
+ * 색상 - 차트에 표현될 시리즈의 색상 지정
253
+ * 접두사 - 값 표시가 될 때(마우스 오버, 값표시 등) 값의 접두사로 적용할 문자(예: data: 100, 접두사: $ => 결과: $100 )
254
+ * 접미사 - 값 표시가 될 때(마우스 오버, 값표시 등) 값의 접미사로 적용할 문자(예: data: 100, 접미사: 원 => 결과: 100원 )
255
+ * 값표시 - 해당 시리즈의 데이터를 화면에 표현여부를 결정한다. 값표시가 선택되면 아래와 같은 항목이 나타난다.
256
+ * 폰트 색상 - 시리즈 중 표시된 값의 색상 설정
257
+ * 크기 - 시리즈 내 폰트 크기 설정
258
+ * 위치 - 시리즈 내 폰트위치 설정
259
+
260
+ ### 6.3. 축
261
+ * 데이터 참조 - 시리즈별로 참조하는 원본 데이터에서 Y축에 표현될 데이터의 필드명를 정의, 아래와 같은 데이터를 표시할 시 참조할 데이터는 hobby가 된다.
262
+ ![Data Refer][chart-polar-01]
263
+
264
+
265
+ [chart-polar-01]: ../images/chart-polar-01.png
266
+
267
+ ---
268
+
269
+ ## 7. 파이 차트
270
+
271
+ 데이터를 원형 모양으로 표현해주는 차트.
272
+
273
+ ### 7.1. 공통 속성
274
+
275
+ * 테마 - 차트의 테마를 변경. 'light'와 'dark' 두가지를 지원
276
+ * 범례 - 차트의 범례를 표시.
277
+ * 위치 - 상(top), 하(buttom), 좌(left), 우(right) 네방향으로 배치할 수 있다.
278
+
279
+ ### 7.2. 시리즈
280
+
281
+ * 버튼 "+"를 사용하여 데이터의 시리즈를 여러개 추가할 수 있다.
282
+ * **공통**
283
+ * 데이터 참조 - 시리즈별로 참조하는 원본 데이터에서 Y축에 표현될 데이터의 필드명를 정의, 아래와 같은 데이터를 표시할 시 Series의 Data-Key는 'Good'가 된다.
284
+ ![Data Refer][chart-pie-01]
285
+ * 라벨 - 범례명
286
+ * 색상 - 차트에 표현될 시리즈의 색상 지정
287
+ * 접두사 - 값 표시가 될 때(마우스 오버, 값표시 등) 값의 접두사로 적용할 문자(예: data: 100, 접두사: $ => 결과: $100 )
288
+ * 접미사 - 값 표시가 될 때(마우스 오버, 값표시 등) 값의 접미사로 적용할 문자(예: data: 100, 접미사: 원 => 결과: 100원 )
289
+ * 값표시 - 해당 시리즈의 데이터를 화면에 표현여부를 결정한다. 값표시가 선택되면 아래와 같은 항목이 나타난다.
290
+ * 폰트 색상 - 시리즈 중 표시된 값의 색상 설정
291
+ * 크기 - 시리즈 내 폰트 크기 설정
292
+ * 위치 - 시리즈 내 폰트위치 설정
293
+
294
+ ### 7.3. 축
295
+ * 데이터 참조 - 시리즈별로 참조하는 원본 데이터에서 Y축에 표현될 데이터의 필드명를 정의, 아래와 같은 데이터를 표시할 시 참조할 데이터는 line이 된다.
296
+ ![Data Refer][chart-pie-01]
297
+
298
+ [chart-pie-01]: ../images/chart-pie-01.png
299
+
300
+ ---
301
+
302
+ ## 8. 도넛 차트
303
+ ![컴포넌트-Chart-doughnut][chart-doughnut-01]
304
+
305
+ 데이터를 도넛 모양으로 표현해주는 차트.
306
+
307
+ ### 8.1. 공통 속성
308
+
309
+ * 테마 - 차트의 테마를 변경. 'light'와 'dark' 두가지를 지원
310
+ * 범례 - 차트의 범례를 표시.
311
+ * 위치 - 상(top), 하(buttom), 좌(left), 우(right) 네방향으로 배치할 수 있다.
312
+
313
+ ### 8.2. 시리즈
314
+
315
+ * 버튼 "+"를 사용하여 데이터의 시리즈를 여러개 추가할 수 있다.
316
+ * **공통**
317
+ * 데이터 참조 - 시리즈별로 참조하는 원본 데이터에서 Y축에 표현될 데이터의 필드명를 정의, 아래와 같은 데이터를 표시할 시 Series의 Data-Key는 'Good'가 된다.
318
+ ![Data Refer][chart-doughnut-01]
319
+ * 라벨 - 범례명
320
+ * 색상 - 차트에 표현될 시리즈의 색상 지정
321
+ * 접두사 - 값 표시가 될 때(마우스 오버, 값표시 등) 값의 접두사로 적용할 문자(예: data: 100, 접두사: $ => 결과: $100 )
322
+ * 접미사 - 값 표시가 될 때(마우스 오버, 값표시 등) 값의 접미사로 적용할 문자(예: data: 100, 접미사: 원 => 결과: 100원 )
323
+ * 값표시 - 해당 시리즈의 데이터를 화면에 표현여부를 결정한다. 값표시가 선택되면 아래와 같은 항목이 나타난다.
324
+ * 폰트 색상 - 시리즈 중 표시된 값의 색상 설정
325
+ * 크기 - 시리즈 내 폰트 크기 설정
326
+ * 위치 - 시리즈 내 폰트위치 설정
327
+
328
+ ### 8.3. 축
329
+ * 데이터 참조 - 시리즈별로 참조하는 원본 데이터에서 Y축에 표현될 데이터의 필드명를 정의, 아래와 같은 데이터를 표시할 시 참조할 데이터는 line이 된다.
330
+ ![Data Refer][chart-doughnut-01]
331
+
332
+ [chart-doughnut-01]: ../images/chart-doughnut-01.png
@@ -0,0 +1,333 @@
1
+ # **Chart**
2
+
3
+ ## 1. Common
4
+
5
+ ### 1.1. Common Properties
6
+
7
+ * Theme - Change the theme of the chart. Supports'light' and'dark'
8
+ * Legend - Display the legend of the chart.
9
+ * Position - Can be placed in four directions: top, bottom, left, and right.
10
+ * Multi Axis - Whether to express the Y axis as left and right Multi Axis, and when selecting Multi Axis, the Y 2nd axes and Y 2nd axes options are displayed.
11
+
12
+ ### 1.2. X Axes
13
+
14
+ * Data key - Field name of the data to be represented on the chart. Enter the field name of the data to be expressed in X Axes. When the following data is displayed, it becomes'Date'.
15
+ ![Chart-bar-theme][chart-bar-01]
16
+ * Title - Enter the desired label in X Axes
17
+ * Grid Line - Whether grid lines representing the vertical direction
18
+ ![X Axes Grid][chart-bar-08]
19
+ * Display Tick - Whether X Axes Display Tick or not
20
+
21
+ ### 1.3. Y Axes
22
+
23
+ * Title - Enter the desired title (Label) in Y Axes
24
+ * Min Auto - When Min Auto is selected, the minimum value and step are automatically applied to calculate the scale
25
+ * Min - Displayed when Min Auto is off, and scale Min can be set.
26
+ * Max Auto - When Max Auto is selected, the maximum value and step are automatically applied and the scale is calculated.
27
+ * Max - Displayed when Max Auto is off, and the scale Max can be set.
28
+ * Step - Set the scale interval
29
+ * Grid Line - Whether to express horizontal grid lines
30
+ ![Y Axes Grid][chart-bar-12]
31
+ * Display Tick - Whether Y Axes Display Tick or not
32
+
33
+ ---
34
+
35
+ ## 2. Mix Chart(Vertical bar chart & line chart)
36
+ * Chart that expresses data by mixing bar shape and line shape. __(The properties of the mix chart are the same as the bar chart and line chart.)__
37
+ * Data can be expressed in the form of bars or lines, or by mixing bars and lines. When there are multiple series (fields), it can be expressed as a parallel bar or stacked bar.
38
+ ![chart-mix-chart Type][chart-mix-02]
39
+
40
+ [chart-mix-02]: ../images/chart-mix-02.png
41
+
42
+ ### 2.1. Series
43
+ * Multiple series of data can be added by using the button "+".
44
+ * **common**
45
+ * Data Key - Defines the field name of the data to be expressed in Y Axes from the original data referenced by series,
46
+ When displaying the following data, the Data Key of the Series is 'Good' and'Bad'.
47
+ ![Data Refer][chart-bar-01]
48
+ * Type - Whether to express the series in a line chart or bar
49
+ * Label - Legend name
50
+ * Color - Specify the color of the series to be displayed on the chart
51
+ * Stack Group - The values ​​of the series included in the same Stack Group are accumulated and expressed in a graph.
52
+ ![Stack Group][chart-bar-02]
53
+ * Target Axes - When multi axis is applied, the setting field for the target Axes appears, and the target Axes points to the Axes (Axes scale) referenced by the information of the series.
54
+ ![Target Axes][chart-bar-03]
55
+ * Value Prefix - The character to be applied as the Value Prefix of the value when the value is displayed (mouse hover, Display Value setted, etc.) (Ex: data: 100, Value Prefix: $ => Result: $100)
56
+ * Value Suffix - The character to be applied as the Value Suffix of the value when the value is displayed (mouse hover, Display Value setted, etc.) (Ex: data: 100, Value Suffix: circle => Result: 100 won)
57
+ * Display Value - Determines whether to display the data of the series on the screen.
58
+ When Display Value is selected, the following items appear.
59
+ * Font Color - Set the color of the displayed value in the series
60
+ * Size - Set Font Size in Series
61
+ * Position - Set Font Position in Series
62
+ * **When Type is line**
63
+ * Line Tension - Graph using straight line (angled), graph using smooth line (smooth)
64
+ * Border Width - Set the width of the line
65
+ * Point Shape - Point shape of each vertex of the line
66
+ * Point Size - Size of each vertex of the line
67
+ * Fill - The space where the line is drawn is filled in the figure that displays the data by using the color of the common inner definition.
68
+
69
+ ### 2.2. X Axes
70
+
71
+ * Same as the content defined in [Common Properties](#1.2.-X Axes)
72
+ * Bar Spacing - Gap between bars, and it affects the size of the bar.
73
+ * Tick Spacing - Gap between the tick marks and affects the size of the bar.
74
+
75
+ ### 2.3. Y Axes
76
+
77
+ * Same as the content defined in [Common Properties](#1.3.-Y Axes)
78
+
79
+ ### 2.4. Y 2nd Axes(Display on Multi axis is selected)
80
+
81
+ * Same as the content defined in [Common Properties](#1.3.-Y Axes)
82
+
83
+
84
+ [chart-bar-01]: ../images/chart-bar-01.png
85
+
86
+ [chart-bar-02]: ../images/chart-bar-02.png
87
+
88
+ [chart-bar-03]: ../images/chart-bar-03.png
89
+
90
+ [chart-bar-08]: ../images/chart-bar-08.png
91
+
92
+ [chart-bar-12]: ../images/chart-bar-12.png
93
+
94
+
95
+ ---
96
+
97
+ ## 3. Horizontal bar chart
98
+
99
+ A chart that expresses data in the form of a horizontal bar. When there are multiple fields, it can be expressed as a parallel bar or stacked bar.
100
+
101
+ ### 3.1. 공통 속성
102
+
103
+ * Theme - Change the theme of the chart. Supports'light' and'dark'
104
+ * Legend - Display the legend of the chart.
105
+ * Position - Can be placed in four directions: top, bottom, left, and right.
106
+ * Multi Axis - Whether to express the Y axis as left and right Multi Axis, and when selecting Multi Axis, the Y 2nd axes and Y 2nd axes options are displayed.
107
+
108
+ ### 3.2. Series
109
+
110
+ * Multiple series of data can be added by using the button "+".
111
+ * **common**
112
+ * Data Key - Defines the field name of the data to be expressed in Y Axes from the original data referenced by series,
113
+ When displaying the following data, the Data Key of the Series is 'Good' and'Bad'.
114
+ ![Data Refer][chart-bar-01]
115
+ * Label - Legend name
116
+ * Color - Specify the color of the series to be displayed on the chart
117
+ * Stack Group - The values ​​of the series included in the same Stack Group are accumulated and expressed in a graph.
118
+ ![Stack Group][chart-bar-02]
119
+ * Target Axes - When multi axis is applied, the setting field for the target Axes appears, and the target Axes points to the Axes (Axes scale) referenced by the information of the series.
120
+ ![Target Axes][chart-bar-03]
121
+ * Value Prefix - The character to be applied as the Value Prefix of the value when the value is displayed (mouse hover, Display Value setted, etc.) (Ex: data: 100, Value Prefix: $ => Result: $100)
122
+ * Value Suffix - The character to be applied as the Value Suffix of the value when the value is displayed (mouse hover, Display Value setted, etc.) (Ex: data: 100, Value Suffix: circle => Result: 100 won)
123
+ * Display Value - Determines whether to display the data of the series on the screen.When Display Value is selected, the following items appear.
124
+ * Font Color - Set the color of the displayed value in the series
125
+ * Size - Set Font Size in Series
126
+ * Position - Set Font Position in Series
127
+
128
+ ### 3.3. X Axes
129
+
130
+ * Data Key - The field name of the data to be expressed by the chart. Enter the field name of the data to be expressed in X Axes. When the following data is displayed, it becomes'Date'.
131
+ ![Data Refer][chart-horizontal-bar-01]
132
+ * Title - Enter the desired title (Label) in X Axes
133
+ * Grid Line - Whether to display vertical grid lines
134
+ * Display Tick - Whether X Axes Display Tick or not
135
+
136
+ ### 3.4. Y Axes
137
+
138
+ * Title - Enter the desired title (Label) in Y Axes
139
+ * Min Auto - When Min Auto is selected, the minimum value and step are automatically applied to calculate the scale
140
+ * Min - Displayed when Min Auto is off, and scale Min can be set.
141
+ * Max Auto - When Max Auto is selected, the maximum value and step are automatically applied and the scale is calculated.
142
+ * Max - Displayed when Max Auto is off, and the scale Max can be set.
143
+ * Step - Set the scale interval
144
+ * Grid Line - Whether to express horizontal grid lines
145
+ * Display Tick - Whether Y Axes Display Tick or not
146
+
147
+
148
+ [chart-horizontal-bar-01]: ../images/chart-horizontal-bar-01.png
149
+
150
+ ---
151
+ ## 4. Line Chart
152
+
153
+ Chart that expresses data in the form of a line.
154
+
155
+ ### 4.1. Properties
156
+
157
+ * Theme-Change the theme of the chart. Supports'light' and'dark'
158
+ * Legend-Display the legend of the chart.
159
+ * Position-It can be placed in four directions: top, bottom, left, and right.
160
+ * Multi axis-Whether to express Y Axes as left and right Multi axis, when selecting Multi axis, Y 2nd Axes and Y 2nd Axes options are displayed.
161
+
162
+ ### 4.2. Series
163
+
164
+ * Multiple series of data can be added by using the button "+".
165
+ * **common**
166
+ * Data Key - Defines the field name of the data to be expressed in Y Axes in the original data referenced by series, and when the following data is displayed, the Data-Key of the series becomes'Good' or 'Bad'.
167
+ ![Data Refer][chart-line-01]
168
+ * Line Tension - Graph using straight line (angled), graph using smooth line (smooth)
169
+ * Border Width - Set the width of the line
170
+ * Label - Legend name
171
+ * Color - Specify the color of the series to be displayed on the chart
172
+ * Point Shape - Point shape of each vertex of the line
173
+ * Point Size - Size of each vertex of the line
174
+ * Stack Group - The values ​​of the series included in the same Stack Group are accumulated and expressed in a graph.
175
+ * Fill - The space where the line is drawn is filled in the figure that displays the data by using the color of the common inner definition.
176
+ * Target Axes - When multi axis is applied, the setting field for the target Axes appears, and the target Axes points to the Axes (Axes scale) referenced by the information of the series.
177
+ * Value Prefix - The character to be applied as the Value Prefix of the value when the value is displayed (mouse - over, Display Value, etc.) (Ex: data: 100, Value Prefix: $ => Result: $100)
178
+ * Value Suffix - The character to be applied as the Value Suffix of the value when the value is displayed (mouse - over, Display Value, etc.) (Ex: data: 100, Value Prefix: circle => Result: 100 won)
179
+ * Display Value - Determines whether to display the data of the series on the screen. When Display Value is selected, the following items appear.
180
+ * Font Color - Set the color of the displayed value in the series
181
+ * Size - Set Font Size in Series
182
+ * Position - Set FontPosition in Series
183
+
184
+ ### 4.3. X Axes
185
+
186
+ * Data Key-The field name of the data to be expressed by the chart. Enter the field name of the data to be expressed in X Axes. When the following data is displayed, it becomes'Date'.
187
+ * Title-Enter the desired title (Label) in X Axes
188
+ * Grid Line-Whether to display vertical grid lines
189
+ * Display Tick-Whether X Axes Display Tick or not
190
+
191
+ ### 4.4. Y Axes
192
+ * Title - Enter the desired title (Label) in Y Axes
193
+ * Min Auto - When Min Auto is selected, the minimum value and step are automatically applied to calculate the scale
194
+ * Min - Displayed when Min Auto is off, and scale Min can be set.
195
+ * Max Auto - When Max Auto is selected, the maximum value and step are automatically applied and the scale is calculated.
196
+ * Max - Displayed when Max Auto is off, and the scale Max can be set.
197
+ * Step - Set the scale interval
198
+ * Grid Line - Whether to express horizontal grid lines
199
+ * Display Tick - Whether Y Axes Display Tick or not
200
+
201
+
202
+ [chart-line-01]: ../images/chart-line-01.png
203
+
204
+ ---
205
+ ## 5. Radar chart
206
+
207
+ A chart that expresses data in the form of a radar. Pie chart data is expressed in the form of multiple lines
208
+ ### 5.1. Common attribute
209
+
210
+ * Theme - Change the theme of the chart. Supports'light' and'dark'
211
+ * Legend - Display the legend of the chart.
212
+ * Position - It can be placed in four directions: top, bottom, left, and right.
213
+
214
+ ### 5.2. Series
215
+
216
+ * Multiple series of data can be added by using the button "+".
217
+ * **common**
218
+ * Data Key - Defines the field name of the data to be expressed in Y Axes in the original data referenced by series, and when the following data is displayed, the Data-Key of the series becomes'Good' and'Bad'.
219
+ ![Data Refer][chart-radar-01]
220
+ * Label - Legend name
221
+ * Color - Specify the color of the series to be displayed on the chart
222
+ * Stack Group - The values ​​of the series included in the same Stack Group are accumulated and expressed in a graph.
223
+ * Value Prefix - The character to be applied as the Value Prefix of the value when the value is displayed (mouse hover, Display Value, etc.) (Ex: data: 100, Value Prefix: $ => Result: $100)
224
+ * Value Suffix - The character to be applied as the Value Suffix of the value when the value is displayed (mouse hover, Display Value, etc.) (Ex: data: 100, Value Prefix: circle => Result: 100 won)
225
+ * Display Value - Determines whether to display the data of the series on the screen. When Display Value is selected, the following items appear.
226
+ * Font Color - Set the color of the displayed value in the series
227
+ * Size - Set Font Size in Series
228
+ * Position - Set FontPosition in Series
229
+
230
+ ### 5.3. Axes
231
+ * Data Key - Defines the field name of the data to be expressed in Axes in the original data referenced by series. When displaying the following data, the referenced data becomes a line.
232
+ ![Data Refer][chart-radar-01]
233
+
234
+ [chart-radar-01]: ../images/chart-radar-01.png
235
+
236
+ ---
237
+
238
+ ## 6. Polar chart
239
+
240
+ Charts that represent data in polar coordinates.
241
+
242
+ ### 6.1. Common attribute
243
+
244
+ * Theme - Change the theme of the chart. Supports'light' and'dark'
245
+ * Legend - Display the legend of the chart.
246
+ * Position - It can be placed in four directions: top, bottom, left, and right.
247
+
248
+ ### 6.2. Series
249
+
250
+ * Multiple series of data can be added by using the button "+".
251
+ * **common**
252
+ * Data Key - Defines the field name of the data to be expressed in Y Axes in the original data referenced by series, and when the following data is displayed, the Data-Key of the series becomes 'Good'.
253
+ ![Data Refer][chart-polar-01]
254
+ * Label - Legend name
255
+ * Color - Specify the color of the series to be displayed on the chart
256
+ * Value Prefix - The character to be applied as the Value Prefix of the value when the value is displayed (mouse hover, Display Value, etc.) (Ex: data: 100, Value Prefix: $ => Result: $100)
257
+ * Value Suffix - The character to be applied as the Value Suffix of the value when the value is displayed (mouse hover, Display Value, etc.) (Ex: data: 100, Value Prefix: circle => Result: 100 won)
258
+ * Display Value - Determines whether to display the data of the series on the screen. When Display Value is selected, the following items appear.
259
+ * Font Color - Set the color of the displayed value in the series
260
+ * Size - Set Font Size in Series
261
+ * Position - Set FontPosition in Series
262
+
263
+ ### 6.3. Axes
264
+ * Data Key - Defines the field name of the data to be expressed in Axes in the original data referenced by series. When displaying the following data, the referenced data becomes line.
265
+ ![Data Refer][chart-polar-01]
266
+
267
+ [chart-polar-01]: ../images/chart-polar-01.png
268
+
269
+ ---
270
+
271
+ ## 7. Pie chart
272
+
273
+ Charts that represent data in a circular shape.
274
+
275
+ ### 7.1. Common attribute
276
+
277
+ * Theme-Change the theme of the chart. Supports'light' and'dark'
278
+ * Legend-Display the legend of the chart.
279
+ * Position-It can be placed in four directions: top, bottom, left, and right.
280
+
281
+ ### 7.2. Series
282
+
283
+ * Multiple series of data can be added by using the button "+".
284
+ * **common**
285
+ * Data Key-Defines the field name of the data to be expressed in Y Axes in the original data referenced by series, and when the following data is displayed, the Data-Key of the series becomes 'Good'.
286
+ ![Data Refer][chart-pie-01]
287
+ * Label-Legend name
288
+ * Color-Specify the color of the series to be displayed on the chart
289
+ * Value Prefix-The character to be applied as the Value Prefix of the value when the value is displayed (mouse-over, Display Value, etc.) (Ex: data: 100, Value Prefix: $ => Result: $100)
290
+ * Value Suffix-The character to be applied as the Value Suffix of the value when the value is displayed (mouse-over, Display Value, etc.) (Ex: data: 100, Value Prefix: circle => Result: 100 won)
291
+ * Display Value-Determines whether to display the data of the series on the screen. When Display Value is selected, the following items appear.
292
+ * Font Color-Set the color of the displayed value in the series
293
+ * Size-Set Font Size in Series
294
+ * Position-Set FontPosition in Series
295
+
296
+ ### 7.3. Axes
297
+ * Data Key-Defines the field name of the data to be expressed in Axes in the original data referenced by series. When displaying the following data, the referenced data becomes a line.
298
+ ![Data Refer][chart-pie-01]
299
+
300
+ [chart-pie-01]: ../images/chart-pie-01.png
301
+
302
+ ---
303
+
304
+ ## 8. Donut chart
305
+
306
+ A chart that presents data in a donut shape.
307
+
308
+ ### 8.1. Common attribute
309
+
310
+ * Theme-Change the theme of the chart. Supports'light' and'dark'
311
+ * Legend-Display the legend of the chart.
312
+ * Position-It can be placed in four directions: top, bottom, left, and right.
313
+
314
+ ### 8.2. Series
315
+
316
+ * Multiple series of data can be added by using the button "+".
317
+ * **common**
318
+ * Data Key-Defines the field name of the data to be expressed in Axes in the original data referenced by series, and when the following data is displayed, the Data-Key of the series becomes 'Good'.
319
+ ![Data Refer][chart-doughnut-01]
320
+ * Label-Legend name
321
+ * Color-Specify the color of the series to be displayed on the chart
322
+ * Value Prefix-The character to be applied as the Value Prefix of the value when the value is displayed (mouse-over, Display Value, etc.) (Ex: data: 100, Value Prefix: $ => Result: $100)
323
+ * Value Suffix-The character to be applied as the Value Suffix of the value when the value is displayed (mouse-over, Display Value, etc.) (Ex: data: 100, Value Prefix: circle => Result: 100 won)
324
+ * Display Value-Determines whether to display the data of the series on the screen. When Display Value is selected, the following items appear.
325
+ * Font Color-Set the color of the displayed value in the series
326
+ * Size-Set Font Size in Series
327
+ * Position-Set FontPosition in Series
328
+
329
+ ### 8.3. Axes
330
+ * Data Key-Defines the field name of the data to be expressed in Axes in the original data referenced by series. When displaying the following data, the referenced data becomes a line.
331
+ ![Data Refer][chart-doughnut-01]
332
+
333
+ [chart-doughnut-01]: ../images/chart-doughnut-01.png