@techie_doubts/tui.chart.2026 4.6.1

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 (284) hide show
  1. package/README.md +165 -0
  2. package/dist/esm/animator.d.ts +32 -0
  3. package/dist/esm/animator.js +102 -0
  4. package/dist/esm/brushes/axis.d.ts +3 -0
  5. package/dist/esm/brushes/axis.js +21 -0
  6. package/dist/esm/brushes/basic.d.ts +9 -0
  7. package/dist/esm/brushes/basic.js +95 -0
  8. package/dist/esm/brushes/boxPlot.d.ts +2 -0
  9. package/dist/esm/brushes/boxPlot.js +22 -0
  10. package/dist/esm/brushes/circleLegend.d.ts +2 -0
  11. package/dist/esm/brushes/circleLegend.js +26 -0
  12. package/dist/esm/brushes/dataLabel.d.ts +6 -0
  13. package/dist/esm/brushes/dataLabel.js +176 -0
  14. package/dist/esm/brushes/exportMenu.d.ts +2 -0
  15. package/dist/esm/brushes/exportMenu.js +55 -0
  16. package/dist/esm/brushes/gauge.d.ts +2 -0
  17. package/dist/esm/brushes/gauge.js +39 -0
  18. package/dist/esm/brushes/label.d.ts +34 -0
  19. package/dist/esm/brushes/label.js +165 -0
  20. package/dist/esm/brushes/legend.d.ts +7 -0
  21. package/dist/esm/brushes/legend.js +162 -0
  22. package/dist/esm/brushes/lineSeries.d.ts +5 -0
  23. package/dist/esm/brushes/lineSeries.js +41 -0
  24. package/dist/esm/brushes/polygon.d.ts +2 -0
  25. package/dist/esm/brushes/polygon.js +24 -0
  26. package/dist/esm/brushes/resetButton.d.ts +3 -0
  27. package/dist/esm/brushes/resetButton.js +112 -0
  28. package/dist/esm/brushes/scatterSeries.d.ts +2 -0
  29. package/dist/esm/brushes/scatterSeries.js +125 -0
  30. package/dist/esm/brushes/sector.d.ts +2 -0
  31. package/dist/esm/brushes/sector.js +54 -0
  32. package/dist/esm/brushes/spectrumLegend.d.ts +14 -0
  33. package/dist/esm/brushes/spectrumLegend.js +199 -0
  34. package/dist/esm/charts/areaChart.d.ts +254 -0
  35. package/dist/esm/charts/areaChart.js +358 -0
  36. package/dist/esm/charts/barChart.d.ts +203 -0
  37. package/dist/esm/charts/barChart.js +300 -0
  38. package/dist/esm/charts/boxPlotChart.d.ts +209 -0
  39. package/dist/esm/charts/boxPlotChart.js +288 -0
  40. package/dist/esm/charts/bubbleChart.d.ts +188 -0
  41. package/dist/esm/charts/bubbleChart.js +263 -0
  42. package/dist/esm/charts/bulletChart.d.ts +199 -0
  43. package/dist/esm/charts/bulletChart.js +278 -0
  44. package/dist/esm/charts/chart.d.ts +133 -0
  45. package/dist/esm/charts/chart.js +484 -0
  46. package/dist/esm/charts/columnChart.d.ts +205 -0
  47. package/dist/esm/charts/columnChart.js +299 -0
  48. package/dist/esm/charts/columnLineChart.d.ts +271 -0
  49. package/dist/esm/charts/columnLineChart.js +386 -0
  50. package/dist/esm/charts/gaugeChart.d.ts +191 -0
  51. package/dist/esm/charts/gaugeChart.js +279 -0
  52. package/dist/esm/charts/heatmapChart.d.ts +199 -0
  53. package/dist/esm/charts/heatmapChart.js +292 -0
  54. package/dist/esm/charts/lineAreaChart.d.ts +271 -0
  55. package/dist/esm/charts/lineAreaChart.js +374 -0
  56. package/dist/esm/charts/lineChart.d.ts +253 -0
  57. package/dist/esm/charts/lineChart.js +360 -0
  58. package/dist/esm/charts/lineScatterChart.d.ts +200 -0
  59. package/dist/esm/charts/lineScatterChart.js +285 -0
  60. package/dist/esm/charts/nestedPieChart.d.ts +192 -0
  61. package/dist/esm/charts/nestedPieChart.js +268 -0
  62. package/dist/esm/charts/pieChart.d.ts +156 -0
  63. package/dist/esm/charts/pieChart.js +224 -0
  64. package/dist/esm/charts/radarChart.d.ts +169 -0
  65. package/dist/esm/charts/radarChart.js +240 -0
  66. package/dist/esm/charts/radialBarChart.d.ts +172 -0
  67. package/dist/esm/charts/radialBarChart.js +251 -0
  68. package/dist/esm/charts/scatterChart.d.ts +184 -0
  69. package/dist/esm/charts/scatterChart.js +279 -0
  70. package/dist/esm/charts/treemapChart.d.ts +166 -0
  71. package/dist/esm/charts/treemapChart.js +239 -0
  72. package/dist/esm/component/areaSeries.d.ts +96 -0
  73. package/dist/esm/component/areaSeries.js +474 -0
  74. package/dist/esm/component/axis.d.ts +40 -0
  75. package/dist/esm/component/axis.js +176 -0
  76. package/dist/esm/component/axisTitle.d.ts +25 -0
  77. package/dist/esm/component/axisTitle.js +67 -0
  78. package/dist/esm/component/axisUsingCenterY.d.ts +32 -0
  79. package/dist/esm/component/axisUsingCenterY.js +175 -0
  80. package/dist/esm/component/backButton.d.ts +13 -0
  81. package/dist/esm/component/backButton.js +26 -0
  82. package/dist/esm/component/background.d.ts +10 -0
  83. package/dist/esm/component/background.js +15 -0
  84. package/dist/esm/component/boxPlotSeries.d.ts +126 -0
  85. package/dist/esm/component/boxPlotSeries.js +410 -0
  86. package/dist/esm/component/boxSeries.d.ts +211 -0
  87. package/dist/esm/component/boxSeries.js +603 -0
  88. package/dist/esm/component/boxStackSeries.d.ts +62 -0
  89. package/dist/esm/component/boxStackSeries.js +447 -0
  90. package/dist/esm/component/bubbleSeries.d.ts +35 -0
  91. package/dist/esm/component/bubbleSeries.js +174 -0
  92. package/dist/esm/component/bulletSeries.d.ts +89 -0
  93. package/dist/esm/component/bulletSeries.js +392 -0
  94. package/dist/esm/component/circleLegend.d.ts +10 -0
  95. package/dist/esm/component/circleLegend.js +37 -0
  96. package/dist/esm/component/component.d.ts +64 -0
  97. package/dist/esm/component/component.js +170 -0
  98. package/dist/esm/component/componentManager.d.ts +23 -0
  99. package/dist/esm/component/componentManager.js +45 -0
  100. package/dist/esm/component/dataLabels.d.ts +23 -0
  101. package/dist/esm/component/dataLabels.js +134 -0
  102. package/dist/esm/component/exportMenu.d.ts +38 -0
  103. package/dist/esm/component/exportMenu.js +147 -0
  104. package/dist/esm/component/gaugeSeries.d.ts +160 -0
  105. package/dist/esm/component/gaugeSeries.js +447 -0
  106. package/dist/esm/component/heatmapSeries.d.ts +64 -0
  107. package/dist/esm/component/heatmapSeries.js +152 -0
  108. package/dist/esm/component/hoveredSeries.d.ts +27 -0
  109. package/dist/esm/component/hoveredSeries.js +95 -0
  110. package/dist/esm/component/legend.d.ts +26 -0
  111. package/dist/esm/component/legend.js +149 -0
  112. package/dist/esm/component/lineSeries.d.ts +69 -0
  113. package/dist/esm/component/lineSeries.js +319 -0
  114. package/dist/esm/component/noDataText.d.ts +9 -0
  115. package/dist/esm/component/noDataText.js +31 -0
  116. package/dist/esm/component/pieSeries.d.ts +137 -0
  117. package/dist/esm/component/pieSeries.js +390 -0
  118. package/dist/esm/component/plot.d.ts +37 -0
  119. package/dist/esm/component/plot.js +163 -0
  120. package/dist/esm/component/radarSeries.d.ts +85 -0
  121. package/dist/esm/component/radarSeries.js +222 -0
  122. package/dist/esm/component/radialAxis.d.ts +26 -0
  123. package/dist/esm/component/radialAxis.js +210 -0
  124. package/dist/esm/component/radialBarSeries.d.ts +111 -0
  125. package/dist/esm/component/radialBarSeries.js +349 -0
  126. package/dist/esm/component/radialPlot.d.ts +55 -0
  127. package/dist/esm/component/radialPlot.js +188 -0
  128. package/dist/esm/component/rangeSelection.d.ts +61 -0
  129. package/dist/esm/component/rangeSelection.js +150 -0
  130. package/dist/esm/component/resetButton.d.ts +13 -0
  131. package/dist/esm/component/resetButton.js +26 -0
  132. package/dist/esm/component/scatterSeries.d.ts +34 -0
  133. package/dist/esm/component/scatterSeries.js +159 -0
  134. package/dist/esm/component/selectedSeries.d.ts +26 -0
  135. package/dist/esm/component/selectedSeries.js +109 -0
  136. package/dist/esm/component/spectrumLegend.d.ts +15 -0
  137. package/dist/esm/component/spectrumLegend.js +76 -0
  138. package/dist/esm/component/title.d.ts +12 -0
  139. package/dist/esm/component/title.js +53 -0
  140. package/dist/esm/component/tooltip.d.ts +41 -0
  141. package/dist/esm/component/tooltip.js +131 -0
  142. package/dist/esm/component/treemapSeries.d.ts +57 -0
  143. package/dist/esm/component/treemapSeries.js +191 -0
  144. package/dist/esm/component/zeroAxis.d.ts +9 -0
  145. package/dist/esm/component/zeroAxis.js +49 -0
  146. package/dist/esm/eventEmitter.d.ts +8 -0
  147. package/dist/esm/eventEmitter.js +15 -0
  148. package/dist/esm/helpers/arrayUtil.d.ts +10 -0
  149. package/dist/esm/helpers/arrayUtil.js +54 -0
  150. package/dist/esm/helpers/axes.d.ts +67 -0
  151. package/dist/esm/helpers/axes.js +345 -0
  152. package/dist/esm/helpers/boxSeries.d.ts +5 -0
  153. package/dist/esm/helpers/boxSeries.js +71 -0
  154. package/dist/esm/helpers/calculator.d.ts +19 -0
  155. package/dist/esm/helpers/calculator.js +153 -0
  156. package/dist/esm/helpers/color.d.ts +153 -0
  157. package/dist/esm/helpers/color.js +218 -0
  158. package/dist/esm/helpers/colorSpectrum.d.ts +5 -0
  159. package/dist/esm/helpers/colorSpectrum.js +17 -0
  160. package/dist/esm/helpers/coordinate.d.ts +9 -0
  161. package/dist/esm/helpers/coordinate.js +51 -0
  162. package/dist/esm/helpers/dataLabels.d.ts +36 -0
  163. package/dist/esm/helpers/dataLabels.js +405 -0
  164. package/dist/esm/helpers/dom.d.ts +2 -0
  165. package/dist/esm/helpers/dom.js +8 -0
  166. package/dist/esm/helpers/downloader.d.ts +7 -0
  167. package/dist/esm/helpers/downloader.js +287 -0
  168. package/dist/esm/helpers/formatDate.d.ts +16 -0
  169. package/dist/esm/helpers/formatDate.js +140 -0
  170. package/dist/esm/helpers/geometric.d.ts +3 -0
  171. package/dist/esm/helpers/geometric.js +35 -0
  172. package/dist/esm/helpers/googleAnalytics.d.ts +1 -0
  173. package/dist/esm/helpers/googleAnalytics.js +39 -0
  174. package/dist/esm/helpers/htmlSanitizer.d.ts +1 -0
  175. package/dist/esm/helpers/htmlSanitizer.js +86 -0
  176. package/dist/esm/helpers/legend.d.ts +9 -0
  177. package/dist/esm/helpers/legend.js +47 -0
  178. package/dist/esm/helpers/pieSeries.d.ts +15 -0
  179. package/dist/esm/helpers/pieSeries.js +72 -0
  180. package/dist/esm/helpers/plot.d.ts +2 -0
  181. package/dist/esm/helpers/plot.js +4 -0
  182. package/dist/esm/helpers/radarSeries.d.ts +1 -0
  183. package/dist/esm/helpers/radarSeries.js +7 -0
  184. package/dist/esm/helpers/range.d.ts +6 -0
  185. package/dist/esm/helpers/range.js +16 -0
  186. package/dist/esm/helpers/responders.d.ts +37 -0
  187. package/dist/esm/helpers/responders.js +197 -0
  188. package/dist/esm/helpers/sector.d.ts +55 -0
  189. package/dist/esm/helpers/sector.js +117 -0
  190. package/dist/esm/helpers/squarifier.d.ts +8 -0
  191. package/dist/esm/helpers/squarifier.js +110 -0
  192. package/dist/esm/helpers/style.d.ts +14 -0
  193. package/dist/esm/helpers/style.js +48 -0
  194. package/dist/esm/helpers/theme.d.ts +58 -0
  195. package/dist/esm/helpers/theme.js +557 -0
  196. package/dist/esm/helpers/tooltip.d.ts +2 -0
  197. package/dist/esm/helpers/tooltip.js +18 -0
  198. package/dist/esm/helpers/tooltipTemplate.d.ts +21 -0
  199. package/dist/esm/helpers/tooltipTemplate.js +147 -0
  200. package/dist/esm/helpers/utils.d.ts +42 -0
  201. package/dist/esm/helpers/utils.js +268 -0
  202. package/dist/esm/helpers/validation.d.ts +6 -0
  203. package/dist/esm/helpers/validation.js +16 -0
  204. package/dist/esm/index.d.ts +40 -0
  205. package/dist/esm/index.js +75 -0
  206. package/dist/esm/message.d.ts +11 -0
  207. package/dist/esm/message.js +11 -0
  208. package/dist/esm/painter.d.ts +27 -0
  209. package/dist/esm/painter.js +88 -0
  210. package/dist/esm/responderDetectors.d.ts +6 -0
  211. package/dist/esm/responderDetectors.js +124 -0
  212. package/dist/esm/scale/coordinateScaleCalculator.d.ts +24 -0
  213. package/dist/esm/scale/coordinateScaleCalculator.js +174 -0
  214. package/dist/esm/scale/datetimeScaleCalculator.d.ts +20 -0
  215. package/dist/esm/scale/datetimeScaleCalculator.js +59 -0
  216. package/dist/esm/store/axes.d.ts +30 -0
  217. package/dist/esm/store/axes.js +282 -0
  218. package/dist/esm/store/category.d.ts +4 -0
  219. package/dist/esm/store/category.js +73 -0
  220. package/dist/esm/store/colorValueScale.d.ts +3 -0
  221. package/dist/esm/store/colorValueScale.js +56 -0
  222. package/dist/esm/store/dataRange.d.ts +4 -0
  223. package/dist/esm/store/dataRange.js +170 -0
  224. package/dist/esm/store/gaugeAxes.d.ts +4 -0
  225. package/dist/esm/store/gaugeAxes.js +175 -0
  226. package/dist/esm/store/heatmapAxes.d.ts +3 -0
  227. package/dist/esm/store/heatmapAxes.js +98 -0
  228. package/dist/esm/store/heatmapSeriesData.d.ts +3 -0
  229. package/dist/esm/store/heatmapSeriesData.js +34 -0
  230. package/dist/esm/store/layout.d.ts +12 -0
  231. package/dist/esm/store/layout.js +487 -0
  232. package/dist/esm/store/legend.d.ts +3 -0
  233. package/dist/esm/store/legend.js +435 -0
  234. package/dist/esm/store/nestedPieSeriesData.d.ts +3 -0
  235. package/dist/esm/store/nestedPieSeriesData.js +49 -0
  236. package/dist/esm/store/options.d.ts +3 -0
  237. package/dist/esm/store/options.js +62 -0
  238. package/dist/esm/store/plot.d.ts +3 -0
  239. package/dist/esm/store/plot.js +102 -0
  240. package/dist/esm/store/radialAxes.d.ts +8 -0
  241. package/dist/esm/store/radialAxes.js +199 -0
  242. package/dist/esm/store/reactive.d.ts +11 -0
  243. package/dist/esm/store/reactive.js +196 -0
  244. package/dist/esm/store/root.d.ts +3 -0
  245. package/dist/esm/store/root.js +46 -0
  246. package/dist/esm/store/scale.d.ts +3 -0
  247. package/dist/esm/store/scale.js +102 -0
  248. package/dist/esm/store/seriesData.d.ts +3 -0
  249. package/dist/esm/store/seriesData.js +299 -0
  250. package/dist/esm/store/stackSeriesData.d.ts +8 -0
  251. package/dist/esm/store/stackSeriesData.js +192 -0
  252. package/dist/esm/store/store.d.ts +20 -0
  253. package/dist/esm/store/store.js +112 -0
  254. package/dist/esm/store/theme.d.ts +3 -0
  255. package/dist/esm/store/theme.js +139 -0
  256. package/dist/esm/store/treemapSeriesData.d.ts +4 -0
  257. package/dist/esm/store/treemapSeriesData.js +93 -0
  258. package/dist/td-chart.css +127 -0
  259. package/dist/td-chart.js +41463 -0
  260. package/dist/td-chart.min.css +6 -0
  261. package/dist/td-chart.min.js +9 -0
  262. package/package.json +112 -0
  263. package/types/brushes.d.ts +30 -0
  264. package/types/charts.d.ts +152 -0
  265. package/types/components/axis.d.ts +71 -0
  266. package/types/components/circleLegend.d.ts +9 -0
  267. package/types/components/dataLabels.d.ts +119 -0
  268. package/types/components/exportMenu.d.ts +14 -0
  269. package/types/components/legend.d.ts +27 -0
  270. package/types/components/plot.d.ts +8 -0
  271. package/types/components/radialAxis.d.ts +22 -0
  272. package/types/components/radialPlot.d.ts +11 -0
  273. package/types/components/rangeSelection.d.ts +3 -0
  274. package/types/components/resetButton.d.ts +13 -0
  275. package/types/components/series.d.ts +386 -0
  276. package/types/components/spectrumLegend.d.ts +25 -0
  277. package/types/components/tooltip.d.ts +58 -0
  278. package/types/components/zoom.d.ts +3 -0
  279. package/types/eventEmitter.d.ts +12 -0
  280. package/types/index.d.ts +615 -0
  281. package/types/options.d.ts +833 -0
  282. package/types/resizeObserver.d.ts +54 -0
  283. package/types/store/store.d.ts +564 -0
  284. package/types/theme.d.ts +670 -0
@@ -0,0 +1,615 @@
1
+ import {
2
+ AreaSeriesDataType,
3
+ BoxSeriesDataType,
4
+ BubbleSeriesDataType,
5
+ CoordinateDataType,
6
+ HeatmapSeriesDataType,
7
+ LineChartOptions,
8
+ LineSeriesDataType,
9
+ Size,
10
+ PlotBand,
11
+ PlotLine,
12
+ Point,
13
+ AreaChartOptions,
14
+ BarChartOptions,
15
+ ColumnChartOptions,
16
+ PieChartOptions,
17
+ HeatmapChartOptions,
18
+ BubbleChartOptions,
19
+ ScatterChartOptions,
20
+ BulletChartOptions,
21
+ RadarChartOptions,
22
+ TreemapChartOptions,
23
+ NestedPieChartOptions,
24
+ LineAreaChartOptions,
25
+ LineScatterChartOptions,
26
+ ColumnLineChartOptions,
27
+ BaseOptions,
28
+ AreaSeriesData,
29
+ BoxSeriesData,
30
+ BoxPlotChartOptions,
31
+ BoxPlotSeriesData,
32
+ BubbleSeriesData,
33
+ BulletSeriesData,
34
+ ColumnLineData,
35
+ LineAreaData,
36
+ LineScatterData,
37
+ PieSeriesData,
38
+ NestedPieSeriesData,
39
+ RadarSeriesData,
40
+ ScatterSeriesData,
41
+ BoxPlotSeriesType,
42
+ LineSeriesData,
43
+ BoxSeriesInput,
44
+ LineSeriesInput,
45
+ AreaSeriesInput,
46
+ PieSeriesType,
47
+ BubbleSeriesInput,
48
+ ScatterSeriesInput,
49
+ BulletSeriesType,
50
+ RadarSeriesInput,
51
+ TreemapSeriesType,
52
+ NestedPieSeriesType,
53
+ AxisLabelInfo,
54
+ RadialBarSeriesType,
55
+ RadialBarSeriesData,
56
+ RadialBarChartOptions,
57
+ GaugeSeriesDataType,
58
+ GaugeSeriesData,
59
+ GaugeChartOptions,
60
+ } from './options';
61
+ import { CheckedLegendType } from './components/legend';
62
+ import { Options, HeatmapSeriesData, TreemapSeriesData } from './store/store';
63
+ import { CustomEventType, EventListener } from './eventEmitter';
64
+ import { AddSeriesDataInfo, SelectSeriesInfo } from './charts';
65
+ import { TooltipData as TooltipDataInfo } from './components/tooltip';
66
+ import {
67
+ AreaChartProps,
68
+ LineChartProps,
69
+ BoxPlotChartProps,
70
+ BarChartProps,
71
+ ColumnChartProps,
72
+ PieChartProps,
73
+ HeatmapChartProps,
74
+ BubbleChartProps,
75
+ ScatterChartProps,
76
+ BulletChartProps,
77
+ RadarChartProps,
78
+ TreemapChartProps,
79
+ NestedPieChartProps,
80
+ LineAreaChartProps,
81
+ LineScatterChartProps,
82
+ ColumnLineChartProps,
83
+ RadialBarChartProps,
84
+ GaugeChartProps,
85
+ } from './charts';
86
+
87
+ declare namespace toastui {
88
+ export class Chart {
89
+ public static lineChart(props: LineChartProps): LineChart;
90
+
91
+ public static areaChart(props: AreaChartProps): AreaChart;
92
+
93
+ public static barChart(props: BarChartProps): BarChart;
94
+
95
+ public static boxPlotChart(props: BoxPlotChartProps): BoxPlotChart;
96
+
97
+ public static columnChart(props: ColumnChartProps): ColumnChart;
98
+
99
+ public static pieChart(props: PieChartProps): PieChart;
100
+
101
+ public static heatmapChart(props: HeatmapChartProps): HeatmapChart;
102
+
103
+ public static bubbleChart(props: BubbleChartProps): BubbleChart;
104
+
105
+ public static scatterChart(props: ScatterChartProps): ScatterChart;
106
+
107
+ public static bulletChart(props: BulletChartProps): BulletChart;
108
+
109
+ public static radarChart(props: RadarChartProps): RadarChart;
110
+
111
+ public static treemapChart(props: TreemapChartProps): TreemapChart;
112
+
113
+ public static nestedPieChart(props: NestedPieChartProps): NestedPieChart;
114
+
115
+ public static lineAreaChart(props: LineAreaChartProps): LineAreaChart;
116
+
117
+ public static lineScatterChart(props: LineScatterChartProps): LineScatterChart;
118
+
119
+ public static columnLineChart(props: ColumnLineChartProps): ColumnLineChart;
120
+
121
+ public static radialBarChart(props: RadialBarChartProps): RadialBarChart;
122
+
123
+ public static gaugeChart(props: GaugeChartProps): GaugeChart;
124
+ }
125
+ }
126
+
127
+ declare class BaseChart {
128
+ public getCheckedLegend(): CheckedLegendType;
129
+
130
+ public on(eventName: CustomEventType, handler: EventListener): void;
131
+
132
+ public destroy(): void;
133
+
134
+ public resize(size: Partial<Size>): void;
135
+
136
+ public getOptions(): Options;
137
+
138
+ public setTooltipOffset(point: Partial<Point>): void;
139
+
140
+ public selectSeries(seriesInfo: SelectSeriesInfo): void;
141
+
142
+ public unselectSeries(): void;
143
+ }
144
+
145
+ export class LineChart extends BaseChart {
146
+ constructor(props: LineChartProps);
147
+
148
+ public addData(data: LineSeriesDataType[], category?: string): void;
149
+
150
+ public addSeries(data: LineSeriesInput, dataInfo?: AddSeriesDataInfo): void;
151
+
152
+ public setData(data: LineSeriesData): void;
153
+
154
+ public addPlotLine(data: PlotLine): void;
155
+
156
+ public removePlotLine(id: string): void;
157
+
158
+ public addPlotBand(data: PlotBand): void;
159
+
160
+ public removePlotBand(id: string): void;
161
+
162
+ public hideSeriesDataLabel(): void;
163
+
164
+ public showSeriesDataLabel(): void;
165
+
166
+ public setOptions(options: LineChartOptions): void;
167
+
168
+ public updateOptions(options: LineChartOptions): void;
169
+
170
+ public showTooltip(seriesInfo: SelectSeriesInfo): void;
171
+
172
+ public hideTooltip(): void;
173
+ }
174
+
175
+ export class AreaChart extends BaseChart {
176
+ constructor(props: AreaChartProps);
177
+
178
+ public addData(data: AreaSeriesDataType[], category: string): void;
179
+
180
+ public addSeries(data: AreaSeriesInput, dataInfo?: AddSeriesDataInfo): void;
181
+
182
+ public setData(data: AreaSeriesData): void;
183
+
184
+ public addPlotLine(data: PlotLine): void;
185
+
186
+ public removePlotLine(id: string): void;
187
+
188
+ public addPlotBand(data: PlotBand): void;
189
+
190
+ public removePlotBand(id: string): void;
191
+
192
+ public hideSeriesDataLabel(): void;
193
+
194
+ public showSeriesDataLabel(): void;
195
+
196
+ public setOptions(options: AreaChartOptions): void;
197
+
198
+ public updateOptions(options: AreaChartOptions): void;
199
+
200
+ public showTooltip(seriesInfo: SelectSeriesInfo): void;
201
+
202
+ public hideTooltip(): void;
203
+ }
204
+
205
+ export class BarChart extends BaseChart {
206
+ constructor(props: BarChartProps);
207
+
208
+ public addData(data: BoxSeriesDataType[], category: string): void;
209
+
210
+ public addSeries(data: BoxSeriesInput<BoxSeriesDataType>, dataInfo?: AddSeriesDataInfo): void;
211
+
212
+ public setData(data: BoxSeriesData): void;
213
+
214
+ public hideSeriesDataLabel(): void;
215
+
216
+ public showSeriesDataLabel(): void;
217
+
218
+ public setOptions(options: BarChartOptions): void;
219
+
220
+ public updateOptions(options: BarChartOptions): void;
221
+
222
+ public showTooltip(seriesInfo: SelectSeriesInfo): void;
223
+
224
+ public hideTooltip(): void;
225
+ }
226
+
227
+ export class BoxPlotChart extends BaseChart {
228
+ constructor(props: BoxPlotChartProps);
229
+
230
+ public addData(data: number[][], category: string): void;
231
+
232
+ public addSeries(data: BoxPlotSeriesType, dataInfo?: AddSeriesDataInfo): void;
233
+
234
+ public setData(data: BoxPlotSeriesData): void;
235
+
236
+ public setOptions(options: BoxPlotChartOptions): void;
237
+
238
+ public updateOptions(options: BoxPlotChartOptions): void;
239
+
240
+ public showTooltip(seriesInfo: SelectSeriesInfo): void;
241
+
242
+ public hideTooltip(): void;
243
+
244
+ public addOutlier(): void;
245
+ }
246
+
247
+ export class ColumnChart extends BaseChart {
248
+ constructor(props: ColumnChartProps);
249
+
250
+ public addData(data: BoxSeriesDataType[], category: string): void;
251
+
252
+ public addSeries(data: BoxSeriesInput<BoxSeriesDataType>, dataInfo?: AddSeriesDataInfo): void;
253
+
254
+ public setData(data: BoxSeriesData): void;
255
+
256
+ public hideSeriesDataLabel(): void;
257
+
258
+ public showSeriesDataLabel(): void;
259
+
260
+ public setOptions(options: ColumnChartOptions): void;
261
+
262
+ public updateOptions(options: ColumnChartOptions): void;
263
+
264
+ public showTooltip(seriesInfo: SelectSeriesInfo): void;
265
+
266
+ public hideTooltip(): void;
267
+ }
268
+
269
+ export class PieChart extends BaseChart {
270
+ constructor(props: PieChartProps);
271
+
272
+ public addSeries(data: PieSeriesType, dataInfo?: AddSeriesDataInfo): void;
273
+
274
+ public setData(data: PieSeriesData): void;
275
+
276
+ public hideSeriesDataLabel(): void;
277
+
278
+ public showSeriesDataLabel(): void;
279
+
280
+ public setOptions(options: PieChartOptions): void;
281
+
282
+ public updateOptions(options: PieChartOptions): void;
283
+
284
+ public showTooltip(seriesInfo: SelectSeriesInfo): void;
285
+
286
+ public hideTooltip(): void;
287
+ }
288
+
289
+ export class HeatmapChart extends BaseChart {
290
+ constructor(props: HeatmapChartProps);
291
+
292
+ public addData(data: HeatmapSeriesDataType, category: string): void;
293
+
294
+ public addSeries(data: HeatmapSeriesDataType, dataInfo: AddSeriesDataInfo): void;
295
+
296
+ public setData(data: HeatmapSeriesData): void;
297
+
298
+ public hideSeriesDataLabel(): void;
299
+
300
+ public showSeriesDataLabel(): void;
301
+
302
+ public setOptions(options: HeatmapChartOptions): void;
303
+
304
+ public updateOptions(options: HeatmapChartOptions): void;
305
+
306
+ public showTooltip(seriesInfo: SelectSeriesInfo): void;
307
+
308
+ public hideTooltip(): void;
309
+ }
310
+
311
+ export class BubbleChart extends BaseChart {
312
+ constructor(props: BubbleChartProps);
313
+
314
+ public addData(data: BubbleSeriesDataType[]): void;
315
+
316
+ public addSeries(data: BubbleSeriesInput, dataInfo?: AddSeriesDataInfo): void;
317
+
318
+ public setData(data: BubbleSeriesData): void;
319
+
320
+ public setOptions(options: BubbleChartOptions): void;
321
+
322
+ public updateOptions(options: BubbleChartOptions): void;
323
+
324
+ public showTooltip(seriesInfo: SelectSeriesInfo): void;
325
+
326
+ public hideTooltip(): void;
327
+ }
328
+
329
+ export class ScatterChart extends BaseChart {
330
+ constructor(props: ScatterChartProps);
331
+
332
+ public addData(data: CoordinateDataType[]): void;
333
+
334
+ public addSeries(data: ScatterSeriesInput, dataInfo?: AddSeriesDataInfo): void;
335
+
336
+ public setData(data: ScatterSeriesData): void;
337
+
338
+ public setOptions(options: ScatterChartOptions): void;
339
+
340
+ public updateOptions(options: ScatterChartOptions): void;
341
+
342
+ public showTooltip(seriesInfo: SelectSeriesInfo): void;
343
+
344
+ public hideTooltip(): void;
345
+ }
346
+
347
+ export class BulletChart extends BaseChart {
348
+ constructor(props: BulletChartProps);
349
+
350
+ public addSeries(data: BulletSeriesType, dataInfo?: AddSeriesDataInfo): void;
351
+
352
+ public setData(data: BulletSeriesData): void;
353
+
354
+ public hideSeriesDataLabel(): void;
355
+
356
+ public showSeriesDataLabel(): void;
357
+
358
+ public setOptions(options: BulletChartOptions): void;
359
+
360
+ public updateOptions(options: BulletChartOptions): void;
361
+
362
+ public showTooltip(seriesInfo: SelectSeriesInfo): void;
363
+
364
+ public hideTooltip(): void;
365
+ }
366
+
367
+ export class RadarChart extends BaseChart {
368
+ constructor(props: RadarChartProps);
369
+
370
+ public addData(data: number[], category: string): void;
371
+
372
+ public addSeries(data: RadarSeriesInput, dataInfo?: AddSeriesDataInfo): void;
373
+
374
+ public setData(data: RadarSeriesData): void;
375
+
376
+ public setOptions(options: RadarChartOptions): void;
377
+
378
+ public updateOptions(options: RadarChartOptions): void;
379
+
380
+ public showTooltip(seriesInfo: SelectSeriesInfo): void;
381
+
382
+ public hideTooltip(): void;
383
+ }
384
+
385
+ export class TreemapChart extends BaseChart {
386
+ constructor(props: TreemapChartProps);
387
+
388
+ public addSeries(data: TreemapSeriesType, dataInfo?: AddSeriesDataInfo): void;
389
+
390
+ public setData(data: TreemapSeriesData): void;
391
+
392
+ public hideSeriesDataLabel(): void;
393
+
394
+ public showSeriesDataLabel(): void;
395
+
396
+ public setOptions(options: TreemapChartOptions): void;
397
+
398
+ public updateOptions(options: TreemapChartOptions): void;
399
+
400
+ public showTooltip(seriesInfo: SelectSeriesInfo): void;
401
+
402
+ public hideTooltip(): void;
403
+ }
404
+
405
+ export class NestedPieChart extends BaseChart {
406
+ constructor(props: NestedPieChartProps);
407
+
408
+ public addSeries(data: NestedPieSeriesType, dataInfo?: AddSeriesDataInfo): void;
409
+
410
+ public setData(data: NestedPieSeriesData): void;
411
+
412
+ public hideSeriesDataLabel(): void;
413
+
414
+ public showSeriesDataLabel(): void;
415
+
416
+ public setOptions(options: NestedPieChartOptions): void;
417
+
418
+ public updateOptions(options: NestedPieChartOptions): void;
419
+
420
+ public showTooltip(seriesInfo: SelectSeriesInfo): void;
421
+
422
+ public hideTooltip(): void;
423
+ }
424
+
425
+ export class LineAreaChart extends BaseChart {
426
+ constructor(props: LineAreaChartProps);
427
+
428
+ public addData(
429
+ data: LineSeriesDataType[] | AreaSeriesDataType[],
430
+ category: string,
431
+ chartType: 'line' | 'area'
432
+ ): void;
433
+
434
+ public addSeries(
435
+ data: LineSeriesInput | AreaSeriesInput,
436
+ addSeriesDataInfo: AddSeriesDataInfo
437
+ ): void;
438
+
439
+ public setData(data: LineAreaData): void;
440
+
441
+ public addPlotLine(data: PlotLine): void;
442
+
443
+ public removePlotLine(id: string): void;
444
+
445
+ public addPlotBand(data: PlotBand): void;
446
+
447
+ public removePlotBand(id: string): void;
448
+
449
+ public hideSeriesDataLabel(): void;
450
+
451
+ public showSeriesDataLabel(): void;
452
+
453
+ public setOptions(options: LineAreaChartOptions): void;
454
+
455
+ public updateOptions(options: LineAreaChartOptions): void;
456
+
457
+ public showTooltip(seriesInfo: SelectSeriesInfo): void;
458
+
459
+ public hideTooltip(): void;
460
+ }
461
+
462
+ export class LineScatterChart extends BaseChart {
463
+ constructor(props: LineScatterChartProps);
464
+
465
+ public addData(data: CoordinateDataType[], chartType: 'line' | 'scatter'): void;
466
+
467
+ public setData(data: LineScatterData): void;
468
+
469
+ public addSeries(data: ScatterSeriesInput, addSeriesDataInfo: AddSeriesDataInfo): void;
470
+
471
+ public setOptions(options: LineScatterChartOptions): void;
472
+
473
+ public updateOptions(options: LineScatterChartOptions): void;
474
+
475
+ public showTooltip(seriesInfo: SelectSeriesInfo): void;
476
+
477
+ public hideTooltip(): void;
478
+ }
479
+
480
+ export class ColumnLineChart extends BaseChart {
481
+ constructor(props: ColumnLineChartProps);
482
+
483
+ public addData(
484
+ data: BoxSeriesDataType[] | LineSeriesDataType[],
485
+ category: string,
486
+ chartType: 'line' | 'column'
487
+ ): void;
488
+
489
+ public addSeries(data, dataInfo: AddSeriesDataInfo): void;
490
+
491
+ public setData(data: ColumnLineData): void;
492
+
493
+ public addPlotLine(data: PlotLine): void;
494
+
495
+ public removePlotLine(id: string): void;
496
+
497
+ public addPlotBand(data: PlotBand): void;
498
+
499
+ public removePlotBand(id: string): void;
500
+
501
+ public hideSeriesDataLabel(): void;
502
+
503
+ public showSeriesDataLabel(): void;
504
+
505
+ public setOptions(options: ColumnLineChartOptions): void;
506
+
507
+ public updateOptions(options: ColumnLineChartOptions): void;
508
+
509
+ public showTooltip(seriesInfo: SelectSeriesInfo): void;
510
+
511
+ public hideTooltip(): void;
512
+ }
513
+
514
+ export class RadialBarChart extends BaseChart {
515
+ constructor(props: RadialBarChartProps);
516
+
517
+ public addSeries(data: RadialBarSeriesType): void;
518
+
519
+ public setData(data: RadialBarSeriesData): void;
520
+
521
+ public hideSeriesDataLabel(): void;
522
+
523
+ public showSeriesDataLabel(): void;
524
+
525
+ public setOptions(options: RadialBarChartOptions): void;
526
+
527
+ public updateOptions(options: RadialBarChartOptions): void;
528
+
529
+ public showTooltip(seriesInfo: SelectSeriesInfo): void;
530
+
531
+ public hideTooltip(): void;
532
+ }
533
+
534
+ export class GaugeChart extends BaseChart {
535
+ constructor(props: GaugeChartProps);
536
+
537
+ public addData(data: GaugeSeriesDataType[], category?: string);
538
+
539
+ public setData(data: GaugeSeriesData): void;
540
+
541
+ public hideSeriesDataLabel(): void;
542
+
543
+ public showSeriesDataLabel(): void;
544
+
545
+ public setOptions(options: GaugeChartOptions): void;
546
+
547
+ public updateOptions(options: GaugeChartOptions): void;
548
+
549
+ public showTooltip(seriesInfo: SelectSeriesInfo): void;
550
+
551
+ public hideTooltip(): void;
552
+ }
553
+
554
+ export {
555
+ BaseOptions,
556
+ AreaChartOptions,
557
+ AreaSeriesData,
558
+ BarChartOptions,
559
+ BoxSeriesData,
560
+ BoxPlotChartOptions,
561
+ BoxPlotSeriesData,
562
+ BubbleSeriesData,
563
+ BulletChartOptions,
564
+ BulletSeriesData,
565
+ ColumnChartOptions,
566
+ ColumnLineChartOptions,
567
+ ColumnLineData,
568
+ HeatmapChartOptions,
569
+ HeatmapSeriesData,
570
+ LineChartOptions,
571
+ LineSeriesData,
572
+ LineAreaChartOptions,
573
+ LineAreaData,
574
+ LineScatterChartOptions,
575
+ LineScatterData,
576
+ PieChartOptions,
577
+ PieSeriesData,
578
+ NestedPieChartOptions,
579
+ NestedPieSeriesData,
580
+ RadarChartOptions,
581
+ RadarSeriesData,
582
+ ScatterChartOptions,
583
+ ScatterSeriesData,
584
+ TreemapChartOptions,
585
+ TreemapSeriesData,
586
+ LineChartProps,
587
+ AreaChartProps,
588
+ BarChartProps,
589
+ ColumnChartProps,
590
+ PieChartProps,
591
+ HeatmapChartProps,
592
+ BubbleChartProps,
593
+ ScatterChartProps,
594
+ BulletChartProps,
595
+ RadarChartProps,
596
+ TreemapChartProps,
597
+ NestedPieChartProps,
598
+ LineAreaChartProps,
599
+ LineScatterChartProps,
600
+ ColumnLineChartProps,
601
+ BoxPlotChartProps,
602
+ CustomEventType,
603
+ EventListener,
604
+ TooltipDataInfo,
605
+ AxisLabelInfo,
606
+ RadialBarChartProps,
607
+ RadialBarChartOptions,
608
+ RadialBarSeriesData,
609
+ GaugeChartProps,
610
+ GaugeChartOptions,
611
+ GaugeSeriesData,
612
+ BubbleChartOptions,
613
+ };
614
+
615
+ export default toastui.Chart;