realchart 0.9.30 → 0.9.31
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 +33 -18
- package/dist/index.esm.js +2 -2
- package/dist/index.js +2 -2
- package/dist/realchart-style.css +8 -2
- package/package.json +1 -1
package/dist/realchart-style.css
CHANGED
|
@@ -186,6 +186,7 @@
|
|
|
186
186
|
--rct-linear-gauge-background-fill: #eee;
|
|
187
187
|
--rct-linear-gauge-value-fill: green;
|
|
188
188
|
--rct-linear-gauge-band-tick-labels-stroke: #333;
|
|
189
|
+
--rct-linear-gauge-group-label-fill: #333;
|
|
189
190
|
/** bullet gauge */
|
|
190
191
|
--rct-bullet-gauge-background-fill: #eee;
|
|
191
192
|
--rct-bullet-gauge-value-fill: #333;
|
|
@@ -248,6 +249,8 @@
|
|
|
248
249
|
--rct-polar-yaxis-grid-line-stroke: #fff;
|
|
249
250
|
--rct-polar-axis-labels-fill: #fff;
|
|
250
251
|
|
|
252
|
+
/* linear gauge */
|
|
253
|
+
--rct-linear-gauge-group-label-fill: #eee;
|
|
251
254
|
/* circle gauge */
|
|
252
255
|
--rct-circle-gauge-rim-fill: #515151;
|
|
253
256
|
--rct-circle-gauge-label-fill: #fff;
|
|
@@ -1008,6 +1011,7 @@
|
|
|
1008
1011
|
|
|
1009
1012
|
/** linear gauge group */
|
|
1010
1013
|
.rct-linear-gauge-group-label {
|
|
1014
|
+
fill: var(--rct-linear-gauge-group-label-fill);
|
|
1011
1015
|
font-size: 1.5em;
|
|
1012
1016
|
}
|
|
1013
1017
|
|
|
@@ -1062,10 +1066,12 @@
|
|
|
1062
1066
|
}
|
|
1063
1067
|
|
|
1064
1068
|
/** annotation */
|
|
1069
|
+
.rct-annotation-background {
|
|
1070
|
+
fill: none;
|
|
1071
|
+
stroke: none;
|
|
1072
|
+
}
|
|
1065
1073
|
.rct-text-annotation {
|
|
1066
1074
|
font-size: 20px;
|
|
1067
|
-
}
|
|
1068
|
-
.rct-shape-annotation {
|
|
1069
1075
|
stroke: #333;
|
|
1070
1076
|
stroke-width: 3px;
|
|
1071
1077
|
}
|