realchart 0.9.23 → 0.9.25
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 +214 -169
- package/dist/index.esm.js +2 -2
- package/dist/index.js +2 -2
- package/dist/realchart-style.css +8 -6
- package/package.json +1 -1
package/dist/realchart-style.css
CHANGED
|
@@ -179,7 +179,7 @@
|
|
|
179
179
|
/* polar */
|
|
180
180
|
--rct-polar-xaxis-grid-line-stroke: #ccc;
|
|
181
181
|
--rct-polar-yaxis-grid-line-stroke: #ccc;
|
|
182
|
-
--rct-polar-axis-
|
|
182
|
+
--rct-polar-axis-labels-fill: #555;
|
|
183
183
|
|
|
184
184
|
/* circle gauge */
|
|
185
185
|
--rct-circle-gauge-back-fill: #ededed;
|
|
@@ -232,7 +232,7 @@
|
|
|
232
232
|
/* polar */
|
|
233
233
|
--rct-polar-xaxis-grid-line-stroke: #ccc;
|
|
234
234
|
--rct-polar-yaxis-grid-line-stroke: #fff;
|
|
235
|
-
--rct-polar-axis-
|
|
235
|
+
--rct-polar-axis-labels-fill: #fff;
|
|
236
236
|
|
|
237
237
|
/* circle gauge */
|
|
238
238
|
--rct-circle-gauge-back-fill: #515151;
|
|
@@ -272,7 +272,7 @@
|
|
|
272
272
|
/* polar */
|
|
273
273
|
--rct-polar-xaxis-grid-line-stroke: #ccc;
|
|
274
274
|
--rct-polar-yaxis-grid-line-stroke: #f0d9be;
|
|
275
|
-
--rct-polar-axis-
|
|
275
|
+
--rct-polar-axis-labels-fill: #f0d9be;
|
|
276
276
|
|
|
277
277
|
/* circle gauge */
|
|
278
278
|
--rct-circle-gauge-back-fill: #515151;
|
|
@@ -461,8 +461,8 @@
|
|
|
461
461
|
.rct-polar-yaxis-grid-line {
|
|
462
462
|
stroke: var(--rct-polar-yaxis-grid-line-stroke)
|
|
463
463
|
}
|
|
464
|
-
.rct-polar-axis-
|
|
465
|
-
fill: var(--rct-polar-axis-
|
|
464
|
+
.rct-polar-axis-labels {
|
|
465
|
+
fill: var(--rct-polar-axis-labels-fill)
|
|
466
466
|
}
|
|
467
467
|
|
|
468
468
|
/** series */
|
|
@@ -1021,7 +1021,9 @@
|
|
|
1021
1021
|
}
|
|
1022
1022
|
.rct-tooltip-back {
|
|
1023
1023
|
fill: white;
|
|
1024
|
-
|
|
1024
|
+
}
|
|
1025
|
+
.rct-tooltip-tail {
|
|
1026
|
+
fill: white;
|
|
1025
1027
|
}
|
|
1026
1028
|
.rct-tooltip-text {
|
|
1027
1029
|
fill: #333;
|