realchart 0.9.5 → 0.9.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 +337 -69
- package/dist/index.esm.js +2 -2
- package/dist/index.js +2 -2
- package/dist/realchart-style.css +162 -9
- package/package.json +1 -1
package/dist/realchart-style.css
CHANGED
|
@@ -133,6 +133,19 @@
|
|
|
133
133
|
--rct-point-label-fill: #333;
|
|
134
134
|
|
|
135
135
|
--rct-credits-fill: #777;
|
|
136
|
+
|
|
137
|
+
/* circle gauge */
|
|
138
|
+
--rct-circle-gauge-back-fill: #e4e4e4;
|
|
139
|
+
--rct-circle-gauge-inner-fill: none;
|
|
140
|
+
--rct-circle-gauge-label-fill: #333;
|
|
141
|
+
/* clock gauge */
|
|
142
|
+
--rct-clock-gauge-face-fill: white;
|
|
143
|
+
--rct-clock-gauge-rim-fill: #eee;
|
|
144
|
+
--rct-clock-gauge-rim-stroke: gray;
|
|
145
|
+
--rct-clock-gauge-tick-stroke: #333;
|
|
146
|
+
--rct-clock-gauge-minor-tick-stroke: #555;
|
|
147
|
+
--rct-clock-gauge-tick-label-fill: #333;
|
|
148
|
+
--rct-clock-gauge-label-fill: #aaa;
|
|
136
149
|
}
|
|
137
150
|
.rct-root[data-theme='dark'] {
|
|
138
151
|
--rct-focus-border: yellow;
|
|
@@ -156,6 +169,10 @@
|
|
|
156
169
|
--rct-point-label-fill: #ddd;
|
|
157
170
|
|
|
158
171
|
--rct-credits-fill: #999;
|
|
172
|
+
|
|
173
|
+
/* circle gauge */
|
|
174
|
+
--rct-circle-gauge-back-fill: #333;
|
|
175
|
+
--rct-circle-gauge-label-fill: #eee;
|
|
159
176
|
}
|
|
160
177
|
|
|
161
178
|
/** control */
|
|
@@ -235,9 +252,9 @@
|
|
|
235
252
|
fill: var(--rct-legend-item-disabled);
|
|
236
253
|
text-decoration: var(--rct-legend-item-disabled-decoration)
|
|
237
254
|
}
|
|
238
|
-
.rct-legend-item-marker {
|
|
255
|
+
/* .rct-legend-item-marker {
|
|
239
256
|
stroke: none;
|
|
240
|
-
}
|
|
257
|
+
} */
|
|
241
258
|
.rct-legend-item-marker[data-hidden] {
|
|
242
259
|
fill: #aaa !important;
|
|
243
260
|
}
|
|
@@ -280,8 +297,9 @@
|
|
|
280
297
|
stroke-width: var(--rct-axis-grid-line-stroke-width);
|
|
281
298
|
}
|
|
282
299
|
.rct-axis-break {
|
|
283
|
-
stroke:
|
|
300
|
+
stroke: #777;
|
|
284
301
|
fill: white;
|
|
302
|
+
fill-opacity: 0.9;
|
|
285
303
|
}
|
|
286
304
|
.rct-axis-guide-label {
|
|
287
305
|
fill: blue;
|
|
@@ -475,6 +493,9 @@
|
|
|
475
493
|
.rct-arearange-series-area {
|
|
476
494
|
fill-opacity: 0.5;
|
|
477
495
|
}
|
|
496
|
+
.rct-arearange-series .rct-arearange-series-area {
|
|
497
|
+
stroke: none;
|
|
498
|
+
}
|
|
478
499
|
|
|
479
500
|
/** bubble series */
|
|
480
501
|
.rct-bubble-series {
|
|
@@ -659,8 +680,140 @@
|
|
|
659
680
|
stroke-width: 2px;
|
|
660
681
|
}
|
|
661
682
|
|
|
683
|
+
/** gauge */
|
|
684
|
+
.rct-gauge-background {
|
|
685
|
+
fill: none;
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
/** circle gauge */
|
|
689
|
+
.rct-circle-gauge-back {
|
|
690
|
+
fill: var(--rct-circle-gauge-back-fill);
|
|
691
|
+
}
|
|
692
|
+
.rct-circle-gauge-inner {
|
|
693
|
+
fill: var(--rct-circle-gauge-inner-fill);
|
|
694
|
+
}
|
|
695
|
+
.rct-circle-gauge-value {
|
|
696
|
+
fill: #008844;
|
|
697
|
+
}
|
|
698
|
+
.rct-circle-gauge-value[data-stroked] {
|
|
699
|
+
fill: none;
|
|
700
|
+
}
|
|
701
|
+
.rct-circle-gauge-label {
|
|
702
|
+
font-size: 40px;
|
|
703
|
+
fill: var(--rct-circle-gauge-label-fill);
|
|
704
|
+
stroke: none;
|
|
705
|
+
}
|
|
706
|
+
.rct-circle-gauge-label[data-grouped] {
|
|
707
|
+
font-size: 20px;
|
|
708
|
+
}
|
|
709
|
+
.rct-circle-gauge-pin {
|
|
710
|
+
fill: white;
|
|
711
|
+
stroke: #333;
|
|
712
|
+
stroke-width: 3px;
|
|
713
|
+
}
|
|
714
|
+
.rct-circle-gauge-hand {
|
|
715
|
+
fill: #333;
|
|
716
|
+
stroke: none;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
/** clock gauge */
|
|
720
|
+
.rct-clock-gauge-face {
|
|
721
|
+
fill: var(--rct-clock-gauge-face-fill);
|
|
722
|
+
stroke: none;
|
|
723
|
+
}
|
|
724
|
+
.rct-clock-gauge-rim {
|
|
725
|
+
fill: var(--rct-clock-gauge-rim-fill);
|
|
726
|
+
stroke: var(--rct-clock-gauge-rim-stroke);
|
|
727
|
+
}
|
|
728
|
+
.rct-clock-gauge-tick {
|
|
729
|
+
stroke: var(--rct-clock-gauge-tick-stroke);
|
|
730
|
+
stroke-width: 2px;
|
|
731
|
+
}
|
|
732
|
+
.rct-clock-gauge-minor-tick {
|
|
733
|
+
stroke: var(--rct-clock-gauge-minor-tick-stroke);
|
|
734
|
+
stroke-width: 1px;
|
|
735
|
+
}
|
|
736
|
+
.rct-clock-gauge-tick-label {
|
|
737
|
+
stroke: none;
|
|
738
|
+
fill: var(--rct-clock-gauge-tick-label-fill);
|
|
739
|
+
font-size: 1em;
|
|
740
|
+
}
|
|
741
|
+
.rct-clock-gauge-pin {
|
|
742
|
+
fill: white;
|
|
743
|
+
stroke: #333;
|
|
744
|
+
stroke-width: 3px;
|
|
745
|
+
}
|
|
746
|
+
.rct-clock-gauge-hour {
|
|
747
|
+
fill: #333;
|
|
748
|
+
}
|
|
749
|
+
.rct-clock-gauge-minute {
|
|
750
|
+
fill: #333;
|
|
751
|
+
}
|
|
752
|
+
.rct-clock-gauge-second {
|
|
753
|
+
fill: #c00;
|
|
754
|
+
}
|
|
755
|
+
.rct-clock-gauge-label {
|
|
756
|
+
fill: var(--rct-clock-gauge-label-fill);
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
/** gauge scale */
|
|
760
|
+
.rct-gauge-scale-line {
|
|
761
|
+
stroke: #555;
|
|
762
|
+
fill: none;
|
|
763
|
+
}
|
|
764
|
+
.rct-gauge-scale-ticks {
|
|
765
|
+
stroke: #555;
|
|
766
|
+
}
|
|
767
|
+
.rct-gauge-scale-tick-labels {
|
|
768
|
+
font-size: 0.85em;
|
|
769
|
+
fill: #333;
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
/** linear gauge */
|
|
773
|
+
.rct-linear-gauge-background {
|
|
774
|
+
fill: #eee;
|
|
775
|
+
}
|
|
776
|
+
.rct-linear-gauge-value {
|
|
777
|
+
fill: green;
|
|
778
|
+
}
|
|
779
|
+
.rct-linear-gauge-band-tick-labels {
|
|
780
|
+
font-size: 0.85em;
|
|
781
|
+
fill: #333;
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
/** linear gauge group */
|
|
785
|
+
.rct-linear-gauge-group-label {
|
|
786
|
+
font-size: 1.5em;
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
/** bullet gauge */
|
|
790
|
+
.rct-bullet-gauge-background {
|
|
791
|
+
fill: #eee;
|
|
792
|
+
}
|
|
793
|
+
.rct-bullet-gauge-value {
|
|
794
|
+
fill: #333;
|
|
795
|
+
}
|
|
796
|
+
.rct-bullet-gauge-target {
|
|
797
|
+
fill: #338;
|
|
798
|
+
}
|
|
799
|
+
.rct-bullet-gauge-label {
|
|
800
|
+
font-size: 1em;
|
|
801
|
+
fill: #333;
|
|
802
|
+
}
|
|
803
|
+
.rct-bullet-gauge-scale-line {
|
|
804
|
+
stroke: #333;
|
|
805
|
+
}
|
|
806
|
+
.rct-bullet-gauge-scale-ticks {
|
|
807
|
+
stroke: #333;
|
|
808
|
+
}
|
|
809
|
+
.rct-bullet-gauge-scale-tick-labels {
|
|
810
|
+
font-size: 0.9em;
|
|
811
|
+
fill: #333;
|
|
812
|
+
}
|
|
813
|
+
|
|
662
814
|
/** tooltip */
|
|
663
815
|
.rct-tooltip {
|
|
816
|
+
pointer-events: none;
|
|
664
817
|
opacity: 0.9;
|
|
665
818
|
}
|
|
666
819
|
.rct-tooltip-back {
|
|
@@ -680,13 +833,13 @@
|
|
|
680
833
|
}
|
|
681
834
|
.rct-crosshair-bar {
|
|
682
835
|
stroke: none;
|
|
683
|
-
fill: #
|
|
836
|
+
fill: #4488cc18;
|
|
684
837
|
}
|
|
685
|
-
.rct-crosshair-
|
|
838
|
+
.rct-crosshair-flag {
|
|
686
839
|
stroke: none;
|
|
687
|
-
fill: #
|
|
840
|
+
fill: #555;
|
|
688
841
|
}
|
|
689
|
-
.rct-crosshair-
|
|
690
|
-
stroke:
|
|
691
|
-
fill: #
|
|
842
|
+
.rct-crosshair-flag-text {
|
|
843
|
+
stroke: none;
|
|
844
|
+
fill: #fff;
|
|
692
845
|
}
|