realchart 0.9.9 → 0.9.10

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.
@@ -121,6 +121,10 @@
121
121
  --rct-axis-grid-line-stroke-start: none;
122
122
  --rct-axis-grid-line-stroke-end: none;
123
123
  --rct-axis-grid-line-stroke-width: 1px;
124
+ --rct-axis-scrollbar-track-fill: #fdfdfd;
125
+ --rct-axis-scrollbar-track-stroke: #aaa;
126
+ --rct-axis-scrollbar-thumb-fill: lightgray;
127
+ --rct-axis-scrollbar-rx: 4px;
124
128
 
125
129
  --rct-legend-background-stroke: none;
126
130
  --rct-legend-item-fill: #333;
@@ -131,6 +135,7 @@
131
135
  --rct-point-label-font-weight: bold;
132
136
  --rct-point-label-stroke: none;
133
137
  --rct-point-label-fill: #777;
138
+ --rct-point-label-fill-outlined: #333;
134
139
 
135
140
  --rct-credits-fill: #777;
136
141
 
@@ -146,6 +151,11 @@
146
151
  --rct-clock-gauge-minor-tick-stroke: #555;
147
152
  --rct-clock-gauge-tick-label-fill: #333;
148
153
  --rct-clock-gauge-label-fill: #aaa;
154
+ /** zoom tracker */
155
+ --rct-zoom-tracker-fill: #0044ff30;
156
+ /** series navigator */
157
+ --rct-navigator-handle-color: #aac;
158
+ --rct-navigator-handle-hover-color: #55c;
149
159
  }
150
160
  .rct-root[data-theme='dark'] {
151
161
  --rct-focus-border: yellow;
@@ -173,6 +183,9 @@
173
183
  /* circle gauge */
174
184
  --rct-circle-gauge-back-fill: #333;
175
185
  --rct-circle-gauge-label-fill: #eee;
186
+
187
+ /** zoom tracker */
188
+ --rct-zoom-tracker-fill: #efefef40;
176
189
  }
177
190
 
178
191
  /** control */
@@ -232,15 +245,18 @@
232
245
 
233
246
  /** title */
234
247
  .rct-title {
235
- margin-bottom: 5px;
248
+ margin-bottom: 10px;
236
249
  font-size: 24px;
237
250
  fill: var(--rct-title-fill);
238
251
  }
252
+ .rct-title[data-hassub] {
253
+ margin-bottom: 2px;
254
+ }
239
255
  .rct-title-background {
240
256
  fill: none;
241
257
  }
242
258
  .rct-subtitle {
243
- margin-bottom: 5px;
259
+ margin-bottom: 10px;
244
260
  font-size: 16px;
245
261
  fill: var(--rct-subtitle-fill);
246
262
  }
@@ -326,6 +342,15 @@
326
342
  stroke: none;
327
343
  fill: #0088ff40;
328
344
  }
345
+ .rct-axis-scrollbar-track {
346
+ fill: var(--rct-axis-scrollbar-track-fill);
347
+ stroke: var(--rct-axis-scrollbar-track-stroke);
348
+ rx: var(--rct-axis-scrollbar-rx);
349
+ }
350
+ .rct-axis-scrollbar-thumb {
351
+ fill: var(--rct-axis-scrollbar-thumb-fill);
352
+ rx: var(--rct-axis-scrollbar-rx);
353
+ }
329
354
 
330
355
  /** polar axis */
331
356
  .rct-polar-xaxis-line {
@@ -458,6 +483,9 @@
458
483
  fill-opacity: 1;
459
484
  opacity: 1;
460
485
  }
486
+ .rct-point-label[data-outlined] {
487
+ fill: var(--rct-point-label-fill-outlined);
488
+ }
461
489
  .rct-point-label-lines {
462
490
  stroke: #585;
463
491
  fill: none;
@@ -498,6 +526,9 @@
498
526
  .rct-area-series-area {
499
527
  fill-opacity: 0.5;
500
528
  }
529
+ .rct-area-series-area[data-simple] {
530
+ fill-opacity: 0.05;
531
+ }
501
532
  .rct-area-series .rct-area-series-area {
502
533
  stroke: none;
503
534
  }
@@ -872,5 +903,23 @@
872
903
 
873
904
  /** zoom tracker */
874
905
  .rct-zoom-tracker {
875
- fill: #0044ff30;
876
- }
906
+ fill: var(--rct-zoom-tracker-fill);
907
+ }
908
+
909
+ /** series navigator */
910
+ .rct-navigator-back {
911
+ fill: white;
912
+ stroke: #f0f0f0;
913
+ }
914
+ .rct-navigator-mask {
915
+ fill: #4488cc20;
916
+ stroke: #ccc;
917
+ }
918
+ .rct-navigator-handle {
919
+ fill: var(--rct-navigator-handle-color);
920
+ stroke: var(--rct-navigator-handle-color);
921
+ }
922
+ .rct-navigator-handle[data-select], .rct-navigator-handle:hover {
923
+ fill: var(--rct-navigator-handle-hover-color);
924
+ stroke: var(--rct-navigator-handle-hover-color);;
925
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "realchart",
3
- "version": "0.9.9",
3
+ "version": "0.9.10",
4
4
  "description": "Wooritech charting library",
5
5
  "main": "./dist/index",
6
6
  "author": {