realchart 1.4.25 → 1.4.27
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/gauge.js +2 -2
- package/gauge.mjs +2 -2
- package/heatmap.js +1 -1
- package/heatmap.mjs +1 -1
- package/ie/gauge.ie.js +2 -2
- package/ie/heatmap.ie.js +1 -1
- package/ie/index.ie.js +2 -2
- package/ie/pictogram.ie.js +1 -1
- package/ie/realchart-style.ie.css +37 -0
- package/ie/split.ie.js +1 -1
- package/ie/treemap.ie.js +1 -1
- package/ie/vector.ie.js +1 -1
- package/ie/wordcloud.ie.js +1 -1
- package/index.d.ts +316 -11
- package/index.js +2 -2
- package/index.mjs +2 -2
- package/package.json +1 -1
- package/pictogram.js +1 -1
- package/pictogram.mjs +1 -1
- package/realchart-style.css +19 -0
- package/split.js +1 -1
- package/split.mjs +1 -1
- package/treemap.js +1 -1
- package/treemap.mjs +1 -1
- package/vector.js +1 -1
- package/vector.mjs +1 -1
- package/wordcloud.js +1 -1
- package/wordcloud.mjs +1 -1
package/package.json
CHANGED
package/pictogram.js
CHANGED
package/pictogram.mjs
CHANGED
package/realchart-style.css
CHANGED
|
@@ -146,6 +146,8 @@
|
|
|
146
146
|
--rct-axis-grid-line-stroke-start: none;
|
|
147
147
|
--rct-axis-grid-line-stroke-end: none;
|
|
148
148
|
--rct-axis-grid-line-stroke-width: 1px;
|
|
149
|
+
--rct-axis-minor-grid-line-stroke: #f2f2f2;
|
|
150
|
+
--rct-axis-minor-grid-line-stroke-width: 0.5px;
|
|
149
151
|
--rct-axis-scrollbar-track-fill: #fdfdfd;
|
|
150
152
|
--rct-axis-scrollbar-track-stroke: #aaa;
|
|
151
153
|
--rct-axis-scrollbar-thumb-fill: #d3d3d3;
|
|
@@ -259,6 +261,7 @@
|
|
|
259
261
|
--rct-axis-break-stroke: #fff;
|
|
260
262
|
--rct-axis-break-fill: #262626;
|
|
261
263
|
--rct-axis-grid-line-stroke: #939393;
|
|
264
|
+
--rct-axis-minor-grid-line-stroke: #666;
|
|
262
265
|
--rct-axis-scrollbar-thumb-fill: #7D7D7D;
|
|
263
266
|
|
|
264
267
|
--rct-crosshair-line-stroke: #fff;
|
|
@@ -321,6 +324,7 @@
|
|
|
321
324
|
--rct-axis-tick-stroke: #f0d9be;
|
|
322
325
|
--rct-axis-label-fill: #f0d9be;
|
|
323
326
|
--rct-axis-grid-line-stroke: #f0d9be;
|
|
327
|
+
--rct-axis-minor-grid-line-stroke: #f8efe4;
|
|
324
328
|
|
|
325
329
|
--rct-legend-background: none;
|
|
326
330
|
--rct-legend-background-stroke: none;
|
|
@@ -534,6 +538,12 @@
|
|
|
534
538
|
stroke-width: 1px;
|
|
535
539
|
shape-rendering: crispEdges;
|
|
536
540
|
}
|
|
541
|
+
.rct-axis-minor-tick {
|
|
542
|
+
stroke: var(--rct-axis-tick-stroke);
|
|
543
|
+
stroke-width: 1px;
|
|
544
|
+
shape-rendering: crispEdges;
|
|
545
|
+
opacity: 0.65;
|
|
546
|
+
}
|
|
537
547
|
.rct-axis-labels {
|
|
538
548
|
font-size: 14px;
|
|
539
549
|
fill: var(--rct-axis-label-fill);
|
|
@@ -550,6 +560,11 @@
|
|
|
550
560
|
stroke-width: var(--rct-axis-grid-line-stroke-width);
|
|
551
561
|
shape-rendering: crispEdges;
|
|
552
562
|
}
|
|
563
|
+
.rct-axis-minor-grid-line {
|
|
564
|
+
stroke: var(--rct-axis-minor-grid-line-stroke);
|
|
565
|
+
stroke-width: var(--rct-axis-minor-grid-line-stroke-width);
|
|
566
|
+
shape-rendering: crispEdges;
|
|
567
|
+
}
|
|
553
568
|
.rct-axis-break {
|
|
554
569
|
stroke: var(--rct-axis-break-stroke);
|
|
555
570
|
fill: var(--rct-axis-break-fill);
|
|
@@ -1065,6 +1080,10 @@
|
|
|
1065
1080
|
font-size: 20px;
|
|
1066
1081
|
fill: #557;
|
|
1067
1082
|
}
|
|
1083
|
+
.rct-polar-body-inner {
|
|
1084
|
+
font-size: 20px;
|
|
1085
|
+
fill: #557;
|
|
1086
|
+
}
|
|
1068
1087
|
.rct-pie-series-sides {
|
|
1069
1088
|
stroke: none;
|
|
1070
1089
|
}
|
package/split.js
CHANGED
package/split.mjs
CHANGED
package/treemap.js
CHANGED
package/treemap.mjs
CHANGED
package/vector.js
CHANGED
package/vector.mjs
CHANGED
package/wordcloud.js
CHANGED