realchart 0.9.30 → 0.9.32
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 +39 -20
- package/dist/index.esm.js +2 -2
- package/dist/index.js +2 -2
- package/dist/realchart-style.css +14 -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;
|
|
@@ -790,6 +793,9 @@
|
|
|
790
793
|
.rct-ohlc-series .rct-point[data-decline] {
|
|
791
794
|
stroke: #00f;
|
|
792
795
|
}
|
|
796
|
+
.rct-ohlc-series .rct-point[data-focus] .rct-ohlc-point-back {
|
|
797
|
+
fill: #0088ff20 !important;
|
|
798
|
+
}
|
|
793
799
|
.rct-ohlc-point-back {
|
|
794
800
|
stroke: none;
|
|
795
801
|
}
|
|
@@ -817,6 +823,9 @@
|
|
|
817
823
|
stroke: #008;
|
|
818
824
|
stroke-width: 2px;
|
|
819
825
|
}
|
|
826
|
+
.rct-errorbar-series .rct-point[data-focus] .rct-errorbar-point-back {
|
|
827
|
+
fill: #0088ff20 !important;
|
|
828
|
+
}
|
|
820
829
|
|
|
821
830
|
/** lollipop series */
|
|
822
831
|
.rct-lollipop-series {
|
|
@@ -1008,6 +1017,7 @@
|
|
|
1008
1017
|
|
|
1009
1018
|
/** linear gauge group */
|
|
1010
1019
|
.rct-linear-gauge-group-label {
|
|
1020
|
+
fill: var(--rct-linear-gauge-group-label-fill);
|
|
1011
1021
|
font-size: 1.5em;
|
|
1012
1022
|
}
|
|
1013
1023
|
|
|
@@ -1062,10 +1072,12 @@
|
|
|
1062
1072
|
}
|
|
1063
1073
|
|
|
1064
1074
|
/** annotation */
|
|
1075
|
+
.rct-annotation-background {
|
|
1076
|
+
fill: none;
|
|
1077
|
+
stroke: none;
|
|
1078
|
+
}
|
|
1065
1079
|
.rct-text-annotation {
|
|
1066
1080
|
font-size: 20px;
|
|
1067
|
-
}
|
|
1068
|
-
.rct-shape-annotation {
|
|
1069
1081
|
stroke: #333;
|
|
1070
1082
|
stroke-width: 3px;
|
|
1071
1083
|
}
|