realchart 1.0.9 → 1.1.0
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.
- package/dist/index.d.ts +10303 -1231
- package/dist/index.esm.js +2 -2
- package/dist/index.ie.js +7 -0
- package/dist/index.js +2 -2
- package/dist/realchart-style.css +31 -27
- package/dist/realchart-style.ie.css +905 -0
- package/package.json +2 -2
|
@@ -0,0 +1,905 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
|
|
3
|
+
.rct-root {
|
|
4
|
+
font-family: AppleSDGothicNeo-Light, "HelveticaNeue", "Malgun Gothic", "맑은 고딕", sans-serif;
|
|
5
|
+
font-size: 16px;
|
|
6
|
+
color: #000;
|
|
7
|
+
/* background-color: #fff; */
|
|
8
|
+
/* word-break: break-all;
|
|
9
|
+
word-wrap: break-word; */
|
|
10
|
+
-webkit-touch-callout: default;
|
|
11
|
+
user-select: none;
|
|
12
|
+
-webkit-user-select: none;
|
|
13
|
+
-moz-user-select: none;
|
|
14
|
+
-ms-user-select: none;
|
|
15
|
+
touch-action: auto;
|
|
16
|
+
-ms-touch-action: auto;
|
|
17
|
+
text-align: left;
|
|
18
|
+
text-align: initial;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.rct-root text {
|
|
22
|
+
stroke: none;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.rct-pattern {
|
|
26
|
+
stroke: #000;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/** palette */
|
|
30
|
+
|
|
31
|
+
/** theme */
|
|
32
|
+
:root, .rct-root {
|
|
33
|
+
|
|
34
|
+
/* polar */
|
|
35
|
+
|
|
36
|
+
/* linear gauge */
|
|
37
|
+
/** bullet gauge */
|
|
38
|
+
/* circle gauge */
|
|
39
|
+
/* clock gauge */
|
|
40
|
+
/** zoom tracker */
|
|
41
|
+
/** series navigator */
|
|
42
|
+
}
|
|
43
|
+
.rct-root[data-theme='dark'] {
|
|
44
|
+
|
|
45
|
+
/* polar */
|
|
46
|
+
|
|
47
|
+
/* linear gauge */
|
|
48
|
+
/* circle gauge */
|
|
49
|
+
|
|
50
|
+
/** zoom tracker */
|
|
51
|
+
}
|
|
52
|
+
.rct-root[data-theme='real'] {
|
|
53
|
+
|
|
54
|
+
/* polar */
|
|
55
|
+
|
|
56
|
+
/* circle gauge */
|
|
57
|
+
|
|
58
|
+
/** zoom tracker */
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/** control */
|
|
62
|
+
.rct-control {
|
|
63
|
+
background-color: none;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/** root */
|
|
67
|
+
.rct-root {
|
|
68
|
+
padding: 20px;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
/** debug border */
|
|
72
|
+
.rct-debug {
|
|
73
|
+
fill: none;
|
|
74
|
+
stroke: rgba(255,0,0,0.25098);
|
|
75
|
+
pointer-events: none;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
/** rich text */
|
|
79
|
+
.rct-text-bold {
|
|
80
|
+
font-weight: bold;
|
|
81
|
+
}
|
|
82
|
+
.rct-text-italic {
|
|
83
|
+
font-style: italic;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
/** label */
|
|
87
|
+
.rct-label-dark {
|
|
88
|
+
fill: #000;
|
|
89
|
+
}
|
|
90
|
+
.rct-label-light {
|
|
91
|
+
fill: #fff;
|
|
92
|
+
}
|
|
93
|
+
.rct-label-background {
|
|
94
|
+
fill: #d3d3d3;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/** button */
|
|
98
|
+
.rct-button-background {
|
|
99
|
+
padding: 2px 4px;
|
|
100
|
+
rx: 5px;
|
|
101
|
+
fill: #e0e0e0;
|
|
102
|
+
stroke: #c0c0c0;
|
|
103
|
+
}
|
|
104
|
+
.rct-button {
|
|
105
|
+
fill: #333;
|
|
106
|
+
font-size: 0.9em;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/** background */
|
|
110
|
+
.rct-background {
|
|
111
|
+
fill: none;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
/** credits */
|
|
115
|
+
.rct-credits {
|
|
116
|
+
font-size: 0.7em;
|
|
117
|
+
fill: #777;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
/** title */
|
|
121
|
+
.rct-title {
|
|
122
|
+
margin-bottom: 10px;
|
|
123
|
+
font-size: 22px;
|
|
124
|
+
fill: #333;
|
|
125
|
+
}
|
|
126
|
+
.rct-title-background {
|
|
127
|
+
fill: none;
|
|
128
|
+
}
|
|
129
|
+
.rct-subtitle {
|
|
130
|
+
margin-bottom: 10px;
|
|
131
|
+
font-size: 15px;
|
|
132
|
+
fill: #333;
|
|
133
|
+
}
|
|
134
|
+
.rct-subtitle-background {
|
|
135
|
+
fill: none;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
/** legend */
|
|
139
|
+
.rct-legend {
|
|
140
|
+
fill: #333;
|
|
141
|
+
stroke: none;
|
|
142
|
+
padding: 3px 6px;
|
|
143
|
+
font-size: 14px;
|
|
144
|
+
}
|
|
145
|
+
.rct-legend-background {
|
|
146
|
+
fill: none;
|
|
147
|
+
rx: 7px;
|
|
148
|
+
stroke: none;
|
|
149
|
+
}
|
|
150
|
+
.rct-legend-item-label[data-hidden] {
|
|
151
|
+
fill: #aaa;
|
|
152
|
+
-webkit-text-decoration: line-through;
|
|
153
|
+
text-decoration: line-through;
|
|
154
|
+
}
|
|
155
|
+
/* .rct-legend-item-marker {
|
|
156
|
+
stroke: none;
|
|
157
|
+
} */
|
|
158
|
+
.rct-legend-item-marker[data-hidden] {
|
|
159
|
+
fill: #aaa !important;
|
|
160
|
+
stroke: #aaa !important;
|
|
161
|
+
}
|
|
162
|
+
.rct-legend-item-marker[data-hidden] path[data-fill] {
|
|
163
|
+
fill: #aaa !important;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
/** plot area */
|
|
167
|
+
.rct-body-background {
|
|
168
|
+
stroke: none;
|
|
169
|
+
fill: none;
|
|
170
|
+
}
|
|
171
|
+
.rct-body-background[data-polar] {
|
|
172
|
+
stroke: none;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
/** axis */
|
|
176
|
+
.rct-axis-title {
|
|
177
|
+
font-size: 15px;
|
|
178
|
+
fill: #333;
|
|
179
|
+
}
|
|
180
|
+
.rct-axis-title-background {
|
|
181
|
+
fill: none;
|
|
182
|
+
}
|
|
183
|
+
.rct-axis-line {
|
|
184
|
+
stroke: #aaa;
|
|
185
|
+
stroke-width: 1px;
|
|
186
|
+
}
|
|
187
|
+
.rct-axis-baseline {
|
|
188
|
+
stroke: #333;
|
|
189
|
+
stroke-width: 1px;
|
|
190
|
+
}
|
|
191
|
+
.rct-axis-tick {
|
|
192
|
+
stroke: #555;
|
|
193
|
+
stroke-width: 1px;
|
|
194
|
+
}
|
|
195
|
+
.rct-axis-labels {
|
|
196
|
+
font-size: 14px;
|
|
197
|
+
fill: #333;
|
|
198
|
+
}
|
|
199
|
+
/* .rct-axis-grid {
|
|
200
|
+
stroke: var(--rct-axis-grid-stroke);
|
|
201
|
+
stroke-width: 1px;
|
|
202
|
+
} */
|
|
203
|
+
.rct-axis-grid-line {
|
|
204
|
+
stroke: #ddd;
|
|
205
|
+
stroke-width: 1px;
|
|
206
|
+
}
|
|
207
|
+
.rct-axis-break {
|
|
208
|
+
stroke: #aaa;
|
|
209
|
+
fill: #fff;
|
|
210
|
+
fill-opacity: 0.9;
|
|
211
|
+
}
|
|
212
|
+
.rct-axis-guide-label {
|
|
213
|
+
fill: #555;
|
|
214
|
+
}
|
|
215
|
+
.rct-axis-guide-line {
|
|
216
|
+
stroke: #555;
|
|
217
|
+
stroke-width: 2px;
|
|
218
|
+
}
|
|
219
|
+
.rct-axis-guide-range {
|
|
220
|
+
stroke: none;
|
|
221
|
+
fill: #0088ff;
|
|
222
|
+
fill-opacity: 0.2;
|
|
223
|
+
}
|
|
224
|
+
.rct-axis-scrollbar-track {
|
|
225
|
+
fill: #fdfdfd;
|
|
226
|
+
stroke: #aaa;
|
|
227
|
+
rx: 4px;
|
|
228
|
+
}
|
|
229
|
+
.rct-axis-scrollbar-thumb {
|
|
230
|
+
fill: #d3d3d3;
|
|
231
|
+
rx: 4px;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
/** polar axis */
|
|
235
|
+
.rct-polar-xaxis-line {
|
|
236
|
+
stroke: #333;
|
|
237
|
+
}
|
|
238
|
+
.rct-polar-xaxis-sector-line {
|
|
239
|
+
stroke: #555;
|
|
240
|
+
}
|
|
241
|
+
.rct-polar-xaxis-grid-line {
|
|
242
|
+
stroke: #ccc
|
|
243
|
+
}
|
|
244
|
+
.rct-polar-yaxis-line {
|
|
245
|
+
stroke: #afafaf;
|
|
246
|
+
}
|
|
247
|
+
.rct-polar-yaxis-grid-line {
|
|
248
|
+
stroke: #ccc
|
|
249
|
+
}
|
|
250
|
+
.rct-polar-axis-labels {
|
|
251
|
+
fill: #555
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
/** series */
|
|
255
|
+
.rct-series[data-index="0"] {
|
|
256
|
+
fill: #0098ff;
|
|
257
|
+
stroke: #0098ff;
|
|
258
|
+
}
|
|
259
|
+
.rct-series[data-index="1"] {
|
|
260
|
+
fill: #66d0ff;
|
|
261
|
+
stroke: #66d0ff;
|
|
262
|
+
}
|
|
263
|
+
.rct-series[data-index="2"] {
|
|
264
|
+
fill: #ff5c35;
|
|
265
|
+
stroke: #ff5c35;
|
|
266
|
+
}
|
|
267
|
+
.rct-series[data-index="3"] {
|
|
268
|
+
fill: #ff9f00;
|
|
269
|
+
stroke: #ff9f00;
|
|
270
|
+
}
|
|
271
|
+
.rct-series[data-index="4"] {
|
|
272
|
+
fill: #ffd938;
|
|
273
|
+
stroke: #ffd938;
|
|
274
|
+
}
|
|
275
|
+
.rct-series[data-index="5"] {
|
|
276
|
+
fill: #00ac69;
|
|
277
|
+
stroke: #00ac69;
|
|
278
|
+
}
|
|
279
|
+
.rct-series[data-index="6"] {
|
|
280
|
+
fill: #91cc39;
|
|
281
|
+
stroke: #91cc39;
|
|
282
|
+
}
|
|
283
|
+
.rct-series[data-index="7"] {
|
|
284
|
+
fill: #8fc6a9;
|
|
285
|
+
stroke: #8fc6a9;
|
|
286
|
+
}
|
|
287
|
+
.rct-series[data-index="8"] {
|
|
288
|
+
fill: #c45db9;
|
|
289
|
+
stroke: #c45db9;
|
|
290
|
+
}
|
|
291
|
+
.rct-series[data-index="9"] {
|
|
292
|
+
fill: #ef5e99;
|
|
293
|
+
stroke: #ef5e99;
|
|
294
|
+
}
|
|
295
|
+
.rct-series[data-index="10"] {
|
|
296
|
+
fill: #afa4c6;
|
|
297
|
+
stroke: #afa4c6;
|
|
298
|
+
}
|
|
299
|
+
.rct-series[data-index="11"] {
|
|
300
|
+
fill: #5b63aa;
|
|
301
|
+
stroke: #5b63aa;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.rct-series-trendline {
|
|
305
|
+
stroke: #ff0000;
|
|
306
|
+
stroke-width: 2px;
|
|
307
|
+
stroke-linejoin: round;
|
|
308
|
+
fill: none;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
/** data point */
|
|
312
|
+
.rct-series[data-pointcolors="a"] .rct-point[data-index="0"] {
|
|
313
|
+
fill: #0098ff;
|
|
314
|
+
stroke: #0098ff;
|
|
315
|
+
}
|
|
316
|
+
.rct-series[data-pointcolors="a"] .rct-point[data-index="1"] {
|
|
317
|
+
fill: #66d0ff;
|
|
318
|
+
stroke: #66d0ff;
|
|
319
|
+
}
|
|
320
|
+
.rct-series[data-pointcolors="a"] .rct-point[data-index="2"] {
|
|
321
|
+
fill: #ff5c35;
|
|
322
|
+
stroke: #ff5c35;
|
|
323
|
+
}
|
|
324
|
+
.rct-series[data-pointcolors="a"] .rct-point[data-index="3"] {
|
|
325
|
+
fill: #ff9f00;
|
|
326
|
+
stroke: #ff9f00;
|
|
327
|
+
}
|
|
328
|
+
.rct-series[data-pointcolors="a"] .rct-point[data-index="4"] {
|
|
329
|
+
fill: #ffd938;
|
|
330
|
+
stroke: #ffd938;
|
|
331
|
+
}
|
|
332
|
+
.rct-series[data-pointcolors="a"] .rct-point[data-index="5"] {
|
|
333
|
+
fill: #00ac69;
|
|
334
|
+
stroke: #00ac69;
|
|
335
|
+
}
|
|
336
|
+
.rct-series[data-pointcolors="a"] .rct-point[data-index="6"] {
|
|
337
|
+
fill: #91cc39;
|
|
338
|
+
stroke: #91cc39;
|
|
339
|
+
}
|
|
340
|
+
.rct-series[data-pointcolors="a"] .rct-point[data-index="7"] {
|
|
341
|
+
fill: #8fc6a9;
|
|
342
|
+
stroke: #8fc6a9;
|
|
343
|
+
}
|
|
344
|
+
.rct-series[data-pointcolors="a"] .rct-point[data-index="8"] {
|
|
345
|
+
fill: #c45db9;
|
|
346
|
+
stroke: #c45db9;
|
|
347
|
+
}
|
|
348
|
+
.rct-series[data-pointcolors="a"] .rct-point[data-index="9"] {
|
|
349
|
+
fill: #ef5e99;
|
|
350
|
+
stroke: #ef5e99;
|
|
351
|
+
}
|
|
352
|
+
.rct-series[data-pointcolors="a"] .rct-point[data-index="10"] {
|
|
353
|
+
fill: #afa4c6;
|
|
354
|
+
stroke: #afa4c6;
|
|
355
|
+
}
|
|
356
|
+
.rct-series[data-pointcolors="a"] .rct-point[data-index="11"] {
|
|
357
|
+
fill: #5b63aa;
|
|
358
|
+
stroke: #5b63aa;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.rct-series[data-pointcolors="f"] .rct-point[data-index="0"] {
|
|
362
|
+
fill: #0098ff;
|
|
363
|
+
}
|
|
364
|
+
.rct-series[data-pointcolors="f"] .rct-point[data-index="1"] {
|
|
365
|
+
fill: #66d0ff;
|
|
366
|
+
}
|
|
367
|
+
.rct-series[data-pointcolors="f"] .rct-point[data-index="2"] {
|
|
368
|
+
fill: #ff5c35;
|
|
369
|
+
}
|
|
370
|
+
.rct-series[data-pointcolors="f"] .rct-point[data-index="3"] {
|
|
371
|
+
fill: #ff9f00;
|
|
372
|
+
}
|
|
373
|
+
.rct-series[data-pointcolors="f"] .rct-point[data-index="4"] {
|
|
374
|
+
fill: #ffd938;
|
|
375
|
+
}
|
|
376
|
+
.rct-series[data-pointcolors="f"] .rct-point[data-index="5"] {
|
|
377
|
+
fill: #00ac69;
|
|
378
|
+
}
|
|
379
|
+
.rct-series[data-pointcolors="f"] .rct-point[data-index="6"] {
|
|
380
|
+
fill: #91cc39;
|
|
381
|
+
}
|
|
382
|
+
.rct-series[data-pointcolors="f"] .rct-point[data-index="7"] {
|
|
383
|
+
fill: #8fc6a9;
|
|
384
|
+
}
|
|
385
|
+
.rct-series[data-pointcolors="f"] .rct-point[data-index="8"] {
|
|
386
|
+
fill: #c45db9;
|
|
387
|
+
}
|
|
388
|
+
.rct-series[data-pointcolors="f"] .rct-point[data-index="9"] {
|
|
389
|
+
fill: #ef5e99;
|
|
390
|
+
}
|
|
391
|
+
.rct-series[data-pointcolors="f"] .rct-point[data-index="10"] {
|
|
392
|
+
fill: #afa4c6;
|
|
393
|
+
}
|
|
394
|
+
.rct-series[data-pointcolors="f"] .rct-point[data-index="11"] {
|
|
395
|
+
fill: #5b63aa;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
/** series */
|
|
399
|
+
.rct-series {
|
|
400
|
+
opacity: inherit;
|
|
401
|
+
transition-property: opacity;
|
|
402
|
+
transition-duration: 0.7s;
|
|
403
|
+
}
|
|
404
|
+
.rct-series[data-unhover] {
|
|
405
|
+
opacity: 0.2 !important;
|
|
406
|
+
}
|
|
407
|
+
.rct-series .rct-point[data-hover] {
|
|
408
|
+
stroke: #000 !important;
|
|
409
|
+
stroke-width: 2px !important;
|
|
410
|
+
filter: brightness(115%) !important;
|
|
411
|
+
opacity: 1 !important;
|
|
412
|
+
}
|
|
413
|
+
.rct-point[data-unhover] {
|
|
414
|
+
stroke: #000 !important;
|
|
415
|
+
stroke-width: 2px !important;
|
|
416
|
+
filter: brightness(115%) !important;
|
|
417
|
+
opacity: 1 !important;
|
|
418
|
+
}
|
|
419
|
+
.rct-point-labels {
|
|
420
|
+
opacity: inherit;
|
|
421
|
+
transition-property: opacity;
|
|
422
|
+
transition-duration: 0.7s;
|
|
423
|
+
}
|
|
424
|
+
.rct-point-labels[data-unhover] {
|
|
425
|
+
opacity: 0.3 !important;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
/** rct-point 대신 여기에 지정해야 outline에 반영된다. */
|
|
429
|
+
.rct-point-labels {
|
|
430
|
+
font-size: 0.8em;
|
|
431
|
+
font-weight: bold;
|
|
432
|
+
stroke: none;
|
|
433
|
+
fill: #333;
|
|
434
|
+
}
|
|
435
|
+
.rct-point-label {
|
|
436
|
+
fill-opacity: 1;
|
|
437
|
+
opacity: 1;
|
|
438
|
+
}
|
|
439
|
+
.rct-point-label-lines {
|
|
440
|
+
stroke-width: 1px;
|
|
441
|
+
stroke: #585;
|
|
442
|
+
fill: none;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
/** bar series */
|
|
446
|
+
.rct-bar-series {
|
|
447
|
+
fill-opacity: 1;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
/** circlebar series */
|
|
451
|
+
.rct-circlebar-series .rct-point {
|
|
452
|
+
stroke: #fff;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
/** barrange series */
|
|
456
|
+
.rct-barrange-series {
|
|
457
|
+
fill-opacity: 0.85;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
/** line series */
|
|
461
|
+
.rct-line-series-line {
|
|
462
|
+
stroke-width: 1px;
|
|
463
|
+
}
|
|
464
|
+
.rct-line-series .rct-point {
|
|
465
|
+
stroke-dasharray: none;
|
|
466
|
+
}
|
|
467
|
+
.rct-line-series-flag {
|
|
468
|
+
font-weight: bold;
|
|
469
|
+
font-size: 0.9em;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
/** area series */
|
|
473
|
+
.rct-area-series-area {
|
|
474
|
+
fill-opacity: 0.5;
|
|
475
|
+
}
|
|
476
|
+
.rct-area-series-area[data-polar] {
|
|
477
|
+
fill-opacity: 0.25;
|
|
478
|
+
}
|
|
479
|
+
.rct-area-series-area[data-simple] {
|
|
480
|
+
fill-opacity: 0.05;
|
|
481
|
+
}
|
|
482
|
+
.rct-area-series .rct-area-series-area {
|
|
483
|
+
stroke: none;
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
/** arearange series */
|
|
487
|
+
.rct-arearange-series-area {
|
|
488
|
+
fill-opacity: 0.5;
|
|
489
|
+
}
|
|
490
|
+
.rct-arearange-series .rct-arearange-series-area {
|
|
491
|
+
stroke: none;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
/** bubble series */
|
|
495
|
+
.rct-bubble-series {
|
|
496
|
+
fill-opacity: 0.75;
|
|
497
|
+
stroke-width: 1px;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
/** scatter series */
|
|
501
|
+
.rct-scatter-series {
|
|
502
|
+
fill-opacity: 0.7;
|
|
503
|
+
}
|
|
504
|
+
.rct-scatter-series .rct-point[data-hover] {
|
|
505
|
+
fill-opacity: 0.9;
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
/** boxplot series */
|
|
509
|
+
.rct-boxplot-series {
|
|
510
|
+
stroke-width: 1;
|
|
511
|
+
}
|
|
512
|
+
.rct-boxplot-point-min {
|
|
513
|
+
stroke: #333;
|
|
514
|
+
stroke-width: 2;
|
|
515
|
+
}
|
|
516
|
+
.rct-boxplot-point-mid {
|
|
517
|
+
stroke: #333;
|
|
518
|
+
stroke-width: 2;
|
|
519
|
+
}
|
|
520
|
+
.rct-boxplot-point-max {
|
|
521
|
+
stroke: #333;
|
|
522
|
+
stroke-width: 2;
|
|
523
|
+
}
|
|
524
|
+
.rct-boxplot-point-stem {
|
|
525
|
+
stroke: #333;
|
|
526
|
+
stroke-dasharray: 2;
|
|
527
|
+
}
|
|
528
|
+
.rct-boxplot-series .rct-point[data-hover] .rct-boxplot-point-stem {
|
|
529
|
+
stroke: #000;
|
|
530
|
+
stroke-dasharray: none;
|
|
531
|
+
stroke-width: 2px;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
/** candlestick series */
|
|
535
|
+
.rct-candlestick-series {
|
|
536
|
+
stroke-width: 1;
|
|
537
|
+
fill-opacity: 0.85;
|
|
538
|
+
}
|
|
539
|
+
.rct-candlestick-series .rct-point[data-hover] {
|
|
540
|
+
fill-opacity: 0.5;
|
|
541
|
+
}
|
|
542
|
+
.rct-candlestick-series .rct-point[data-decline] {
|
|
543
|
+
fill: #008;
|
|
544
|
+
stroke: #008;
|
|
545
|
+
}
|
|
546
|
+
.rct-candlestick-point-border {
|
|
547
|
+
stroke: #333;
|
|
548
|
+
}
|
|
549
|
+
.rct-candlestick-point-wick {
|
|
550
|
+
stroke: #003;
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
/** ohlc series */
|
|
554
|
+
.rct-ohlc-series {
|
|
555
|
+
stroke-width: 2;
|
|
556
|
+
}
|
|
557
|
+
.rct-ohlc-series .rct-point[data-decline] {
|
|
558
|
+
stroke: #00f;
|
|
559
|
+
}
|
|
560
|
+
.rct-ohlc-series .rct-point[data-hover] .rct-ohlc-point-back {
|
|
561
|
+
fill: rgba(0,136,255,0.12549) !important;
|
|
562
|
+
}
|
|
563
|
+
.rct-ohlc-point-back {
|
|
564
|
+
stroke: none;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
/** waterfall series */
|
|
568
|
+
.rct-waterfall-series {
|
|
569
|
+
fill-opacity: 0.85;
|
|
570
|
+
}
|
|
571
|
+
.rct-waterfall-point-negative {
|
|
572
|
+
fill: #dd5500;
|
|
573
|
+
stroke: #dd5500;
|
|
574
|
+
}
|
|
575
|
+
.rct-waterfall-point-sum {
|
|
576
|
+
fill: #0055cc;
|
|
577
|
+
stroke: #0055cc;
|
|
578
|
+
}
|
|
579
|
+
.rct-waterfall-series-lines {
|
|
580
|
+
stroke: #77f;
|
|
581
|
+
stroke-width: 2;
|
|
582
|
+
stroke-dasharray: 2;
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
/** errobar series */
|
|
586
|
+
.rct-errorbar-series .rct-point {
|
|
587
|
+
stroke: #008;
|
|
588
|
+
stroke-width: 2px;
|
|
589
|
+
}
|
|
590
|
+
.rct-errorbar-series .rct-point[data-hover] .rct-errorbar-point-back {
|
|
591
|
+
fill: rgba(0,136,255,0.12549) !important;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
/** lollipop series */
|
|
595
|
+
.rct-lollipop-series {
|
|
596
|
+
stroke-width: 3px;
|
|
597
|
+
}
|
|
598
|
+
.rct-lollipop-point-marker {
|
|
599
|
+
stroke: none;
|
|
600
|
+
}
|
|
601
|
+
.rct-lollipop-series .rct-point[data-hover] {
|
|
602
|
+
stroke: #000;
|
|
603
|
+
stroke-width: inherit;
|
|
604
|
+
}
|
|
605
|
+
.rct-lollipop-series .rct-point[data-hover] .rct-lollipop-point-marker {
|
|
606
|
+
stroke: #000;
|
|
607
|
+
stroke-width: 2px;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
/** dumbbell series */
|
|
611
|
+
.rct-dumbbell-series {
|
|
612
|
+
stroke-width: 3px;
|
|
613
|
+
}
|
|
614
|
+
.rct-dumbbell-point-marker {
|
|
615
|
+
stroke: none;
|
|
616
|
+
}
|
|
617
|
+
.rct-dumbbell-series .rct-point[data-hover] {
|
|
618
|
+
stroke: #000;
|
|
619
|
+
stroke-width: inherit;
|
|
620
|
+
}
|
|
621
|
+
.rct-dumbbell-series .rct-point[data-hover] .rct-dumbbell-point-marker {
|
|
622
|
+
stroke: #000;
|
|
623
|
+
stroke-width: 2px;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
/** equalizer series */
|
|
627
|
+
.rct-equalizer-series {
|
|
628
|
+
fill-opacity: 0.9;
|
|
629
|
+
}
|
|
630
|
+
.rct-equalizer-series .rct-point[data-hover] {
|
|
631
|
+
filter: brightness(120%);
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
/** histogram */
|
|
635
|
+
.rct-histogram-series .rct-point {
|
|
636
|
+
stroke: #fff;
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
/** vector series */
|
|
640
|
+
.rct-vector-series {
|
|
641
|
+
stroke-width: 2px;
|
|
642
|
+
}
|
|
643
|
+
.rct-vector-series .rct-point[data-hover] {
|
|
644
|
+
stroke-width: 5px;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
/** heatmpa series */
|
|
648
|
+
.rct-heatmap-series .rct-point {
|
|
649
|
+
stroke: none;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
/** treemap series */
|
|
653
|
+
.rct-treemap-series .rct-point {
|
|
654
|
+
stroke: #fff;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
/** pie series */
|
|
658
|
+
.rct-pie-series .rct-point {
|
|
659
|
+
stroke: #fff;
|
|
660
|
+
}
|
|
661
|
+
.rct-pie-series-inner {
|
|
662
|
+
font-size: 20px;
|
|
663
|
+
fill: #557;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
/** funnel series */
|
|
667
|
+
.rct-funnel-series .rct-point {
|
|
668
|
+
stroke: #fff;
|
|
669
|
+
}
|
|
670
|
+
.rct-funnel-series .rct-point[data-hover] {
|
|
671
|
+
stroke: #000;
|
|
672
|
+
stroke-width: 2px;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
/** gauge */
|
|
676
|
+
.rct-gauge-pane {
|
|
677
|
+
fill: none;
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
/** gauge group */
|
|
681
|
+
.rct-gauge-group {
|
|
682
|
+
padding: 10px;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
/** circle gauge */
|
|
686
|
+
.rct-circle-gauge-rim {
|
|
687
|
+
fill: #ededed;
|
|
688
|
+
}
|
|
689
|
+
.rct-circle-gauge-inner {
|
|
690
|
+
fill: none;
|
|
691
|
+
}
|
|
692
|
+
.rct-circle-gauge-value {
|
|
693
|
+
fill: #0098ff;
|
|
694
|
+
}
|
|
695
|
+
.rct-circle-gauge-value[data-stroked] {
|
|
696
|
+
fill: none;
|
|
697
|
+
}
|
|
698
|
+
.rct-circle-gauge-label {
|
|
699
|
+
font-size: 40px;
|
|
700
|
+
fill: #000;
|
|
701
|
+
stroke: none;
|
|
702
|
+
}
|
|
703
|
+
.rct-circle-gauge-label[data-grouped] {
|
|
704
|
+
font-size: 20px;
|
|
705
|
+
}
|
|
706
|
+
.rct-circle-gauge-pin {
|
|
707
|
+
fill: #fff;
|
|
708
|
+
stroke: #333;
|
|
709
|
+
stroke-width: 3px;
|
|
710
|
+
}
|
|
711
|
+
.rct-circle-gauge-hand {
|
|
712
|
+
fill: #333;
|
|
713
|
+
stroke: none;
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
/** clock gauge */
|
|
717
|
+
.rct-clock-gauge-face {
|
|
718
|
+
fill: #fff;
|
|
719
|
+
stroke: none;
|
|
720
|
+
}
|
|
721
|
+
.rct-clock-gauge-rim {
|
|
722
|
+
fill: #eee;
|
|
723
|
+
stroke: #808080;
|
|
724
|
+
}
|
|
725
|
+
.rct-clock-gauge-tick {
|
|
726
|
+
stroke: #333;
|
|
727
|
+
stroke-width: 2px;
|
|
728
|
+
}
|
|
729
|
+
.rct-clock-gauge-minor-tick {
|
|
730
|
+
stroke: #555;
|
|
731
|
+
stroke-width: 1px;
|
|
732
|
+
}
|
|
733
|
+
.rct-clock-gauge-tick-label {
|
|
734
|
+
stroke: none;
|
|
735
|
+
fill: #333;
|
|
736
|
+
font-size: 1em;
|
|
737
|
+
}
|
|
738
|
+
.rct-clock-gauge-pin {
|
|
739
|
+
fill: #fff;
|
|
740
|
+
stroke: #333;
|
|
741
|
+
stroke-width: 3px;
|
|
742
|
+
}
|
|
743
|
+
.rct-clock-gauge-hour {
|
|
744
|
+
fill: #333;
|
|
745
|
+
}
|
|
746
|
+
.rct-clock-gauge-minute {
|
|
747
|
+
fill: #333;
|
|
748
|
+
}
|
|
749
|
+
.rct-clock-gauge-second {
|
|
750
|
+
fill: #c00;
|
|
751
|
+
}
|
|
752
|
+
.rct-clock-gauge-label {
|
|
753
|
+
fill: #aaa;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
/** gauge scale */
|
|
757
|
+
.rct-gauge-scale-line {
|
|
758
|
+
stroke: #555;
|
|
759
|
+
fill: none;
|
|
760
|
+
}
|
|
761
|
+
.rct-gauge-scale-ticks {
|
|
762
|
+
stroke: #555;
|
|
763
|
+
stroke: #555;
|
|
764
|
+
}
|
|
765
|
+
.rct-gauge-scale-tick-labels {
|
|
766
|
+
font-size: 0.85em;
|
|
767
|
+
fill: #333;
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
/** linear gauge */
|
|
771
|
+
.rct-linear-gauge-background {
|
|
772
|
+
fill: #eee;
|
|
773
|
+
}
|
|
774
|
+
.rct-linear-gauge-value {
|
|
775
|
+
fill: #008000;
|
|
776
|
+
}
|
|
777
|
+
.rct-linear-gauge-band-tick-labels {
|
|
778
|
+
font-size: 0.85em;
|
|
779
|
+
fill: #333;
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
/** linear gauge group */
|
|
783
|
+
.rct-linear-gauge-group-label {
|
|
784
|
+
fill: #333;
|
|
785
|
+
font-size: 1.5em;
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
/** bullet gauge */
|
|
789
|
+
.rct-bullet-gauge-background {
|
|
790
|
+
fill: #eee;
|
|
791
|
+
}
|
|
792
|
+
.rct-bullet-gauge-value {
|
|
793
|
+
fill: #333;
|
|
794
|
+
}
|
|
795
|
+
.rct-bullet-gauge-target {
|
|
796
|
+
fill: #333;
|
|
797
|
+
}
|
|
798
|
+
.rct-bullet-gauge-label {
|
|
799
|
+
font-size: 1em;
|
|
800
|
+
fill: #333;
|
|
801
|
+
}
|
|
802
|
+
.rct-bullet-gauge-scale-line {
|
|
803
|
+
stroke: #333;
|
|
804
|
+
}
|
|
805
|
+
.rct-bullet-gauge-scale-ticks {
|
|
806
|
+
stroke: #333;
|
|
807
|
+
}
|
|
808
|
+
.rct-bullet-gauge-scale-tick-labels {
|
|
809
|
+
font-size: 0.9em;
|
|
810
|
+
fill: #333;
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
/** bullet gauge group */
|
|
814
|
+
.rct-bullet-gauge-group {
|
|
815
|
+
padding: 10px;
|
|
816
|
+
}
|
|
817
|
+
.rct-bullet-gauge-group-label {
|
|
818
|
+
font-size: 1.5em;
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
/** tooltip */
|
|
822
|
+
.rct-tooltip {
|
|
823
|
+
font-size: 0.8em;
|
|
824
|
+
pointer-events: none;
|
|
825
|
+
opacity: 0.9;
|
|
826
|
+
}
|
|
827
|
+
.rct-tooltip-back {
|
|
828
|
+
fill: #fff;
|
|
829
|
+
}
|
|
830
|
+
.rct-tooltip-tail {
|
|
831
|
+
fill: #fff;
|
|
832
|
+
}
|
|
833
|
+
.rct-tooltip-text {
|
|
834
|
+
fill: #333;
|
|
835
|
+
stroke: none;
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
/** annotation */
|
|
839
|
+
.rct-annotation-background {
|
|
840
|
+
fill: none;
|
|
841
|
+
stroke: none;
|
|
842
|
+
}
|
|
843
|
+
.rct-text-annotation {
|
|
844
|
+
font-size: 20px;
|
|
845
|
+
stroke: #333;
|
|
846
|
+
stroke-width: 3px;
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
/** crosshair */
|
|
850
|
+
.rct-crosshair-line {
|
|
851
|
+
fill: none;
|
|
852
|
+
stroke-width: 1;
|
|
853
|
+
stroke: rgba(128,128,128,0.50196);
|
|
854
|
+
}
|
|
855
|
+
.rct-crosshair-bar {
|
|
856
|
+
stroke: none;
|
|
857
|
+
fill: rgba(68,136,204,0.09412);
|
|
858
|
+
}
|
|
859
|
+
.rct-crosshair-flag {
|
|
860
|
+
stroke: none;
|
|
861
|
+
fill: #555;
|
|
862
|
+
}
|
|
863
|
+
.rct-crosshair-flag-text {
|
|
864
|
+
stroke: none;
|
|
865
|
+
fill: #fff;
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
/** zoom tracker */
|
|
869
|
+
.rct-zoom-tracker {
|
|
870
|
+
fill: rgba(0,68,255,0.18824);
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
/** series navigator */
|
|
874
|
+
.rct-navigator .rct-axis-line {
|
|
875
|
+
display: none;
|
|
876
|
+
}
|
|
877
|
+
.rct-navigator-back {
|
|
878
|
+
fill: #fff;
|
|
879
|
+
stroke: #f0f0f0;
|
|
880
|
+
}
|
|
881
|
+
.rct-navigator-mask {
|
|
882
|
+
fill: rgba(68,136,204,0.12549);
|
|
883
|
+
/* stroke: #ccc; */
|
|
884
|
+
}
|
|
885
|
+
.rct-navigator-handle {
|
|
886
|
+
fill: #0098ff;
|
|
887
|
+
stroke: #0098ff;
|
|
888
|
+
}
|
|
889
|
+
.rct-navigator-handle[data-select] {
|
|
890
|
+
fill: #55c;
|
|
891
|
+
stroke: #55c;
|
|
892
|
+
}
|
|
893
|
+
.rct-navigator-handle:hover {
|
|
894
|
+
fill: #55c;
|
|
895
|
+
stroke: #55c;
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
.rct-navigator-track {
|
|
899
|
+
fill: #d3d3d3;
|
|
900
|
+
stroke: #d3d3d3;
|
|
901
|
+
}
|
|
902
|
+
.rct-navigator-thumb {
|
|
903
|
+
fill: #0098ff;
|
|
904
|
+
stroke: #0098ff;
|
|
905
|
+
}
|