realchart 0.9.19 → 0.9.21
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 +23 -3
- package/dist/index.esm.js +2 -2
- package/dist/index.js +2 -2
- package/dist/realchart-style.css +9 -0
- package/package.json +1 -1
package/dist/realchart-style.css
CHANGED
|
@@ -21,6 +21,10 @@
|
|
|
21
21
|
stroke: none;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
.rct-pattern {
|
|
25
|
+
stroke: #000;
|
|
26
|
+
}
|
|
27
|
+
|
|
24
28
|
/** palette */
|
|
25
29
|
.rct-root {
|
|
26
30
|
--color-1: #0098ff;
|
|
@@ -629,6 +633,11 @@
|
|
|
629
633
|
stroke-width: 2px;
|
|
630
634
|
}
|
|
631
635
|
|
|
636
|
+
/** circlebar series */
|
|
637
|
+
.rct-circlebar-series .rct-point {
|
|
638
|
+
stroke: white;
|
|
639
|
+
}
|
|
640
|
+
|
|
632
641
|
/** barrange series */
|
|
633
642
|
.rct-barrange-series {
|
|
634
643
|
fill-opacity: 0.85;
|