realchart 1.1.6 → 1.1.7
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 +105 -28
- package/dist/index.esm.js +2 -2
- package/dist/index.ie.js +2 -2
- package/dist/index.js +2 -2
- package/dist/realchart-style.css +15 -5
- package/dist/realchart-style.ie.css +15 -5
- package/package.json +1 -1
package/dist/realchart-style.css
CHANGED
|
@@ -409,7 +409,7 @@
|
|
|
409
409
|
fill: #aaa !important;
|
|
410
410
|
}
|
|
411
411
|
|
|
412
|
-
/**
|
|
412
|
+
/** body */
|
|
413
413
|
.rct-body-background {
|
|
414
414
|
stroke: var(--rct-body-background-stroke);
|
|
415
415
|
fill: none;
|
|
@@ -418,6 +418,14 @@
|
|
|
418
418
|
.rct-body-background[data-polar] {
|
|
419
419
|
stroke: none;
|
|
420
420
|
}
|
|
421
|
+
.rct-empty-view {
|
|
422
|
+
fill: #fcfcff;
|
|
423
|
+
stroke: #eee;
|
|
424
|
+
}
|
|
425
|
+
.rct-empty-view-label {
|
|
426
|
+
fill: #777;
|
|
427
|
+
font-size: 1.4em;
|
|
428
|
+
}
|
|
421
429
|
|
|
422
430
|
/** axis */
|
|
423
431
|
.rct-axis-title {
|
|
@@ -446,10 +454,9 @@
|
|
|
446
454
|
font-size: 14px;
|
|
447
455
|
fill: var(--rct-axis-label-fill);
|
|
448
456
|
}
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
} */
|
|
457
|
+
.rct-axis-grid {
|
|
458
|
+
fill: none;
|
|
459
|
+
}
|
|
453
460
|
.rct-axis-grid-line {
|
|
454
461
|
stroke: var(--rct-axis-grid-line-stroke);
|
|
455
462
|
stroke-width: var(--rct-axis-grid-line-stroke-width);
|
|
@@ -491,6 +498,9 @@
|
|
|
491
498
|
.rct-polar-xaxis-sector-line {
|
|
492
499
|
stroke: #555;
|
|
493
500
|
}
|
|
501
|
+
.rct-polar-axis-grids {
|
|
502
|
+
fill: none;
|
|
503
|
+
}
|
|
494
504
|
.rct-polar-xaxis-grid-line {
|
|
495
505
|
stroke: var(--rct-polar-xaxis-grid-line-stroke)
|
|
496
506
|
}
|
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
fill: #aaa !important;
|
|
164
164
|
}
|
|
165
165
|
|
|
166
|
-
/**
|
|
166
|
+
/** body */
|
|
167
167
|
.rct-body-background {
|
|
168
168
|
stroke: none;
|
|
169
169
|
fill: none;
|
|
@@ -172,6 +172,14 @@
|
|
|
172
172
|
.rct-body-background[data-polar] {
|
|
173
173
|
stroke: none;
|
|
174
174
|
}
|
|
175
|
+
.rct-empty-view {
|
|
176
|
+
fill: #fcfcff;
|
|
177
|
+
stroke: #eee;
|
|
178
|
+
}
|
|
179
|
+
.rct-empty-view-label {
|
|
180
|
+
fill: #777;
|
|
181
|
+
font-size: 1.4em;
|
|
182
|
+
}
|
|
175
183
|
|
|
176
184
|
/** axis */
|
|
177
185
|
.rct-axis-title {
|
|
@@ -200,10 +208,9 @@
|
|
|
200
208
|
font-size: 14px;
|
|
201
209
|
fill: #333;
|
|
202
210
|
}
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
} */
|
|
211
|
+
.rct-axis-grid {
|
|
212
|
+
fill: none;
|
|
213
|
+
}
|
|
207
214
|
.rct-axis-grid-line {
|
|
208
215
|
stroke: #ddd;
|
|
209
216
|
stroke-width: 1px;
|
|
@@ -245,6 +252,9 @@
|
|
|
245
252
|
.rct-polar-xaxis-sector-line {
|
|
246
253
|
stroke: #555;
|
|
247
254
|
}
|
|
255
|
+
.rct-polar-axis-grids {
|
|
256
|
+
fill: none;
|
|
257
|
+
}
|
|
248
258
|
.rct-polar-xaxis-grid-line {
|
|
249
259
|
stroke: #ccc
|
|
250
260
|
}
|