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/ie/pictogram.ie.js
CHANGED
|
@@ -367,6 +367,24 @@
|
|
|
367
367
|
stroke-width: 1px;
|
|
368
368
|
shape-rendering: crispEdges;
|
|
369
369
|
}
|
|
370
|
+
.rct-root .rct-axis-minor-tick {
|
|
371
|
+
stroke: #555;
|
|
372
|
+
stroke-width: 1px;
|
|
373
|
+
shape-rendering: crispEdges;
|
|
374
|
+
opacity: 0.65;
|
|
375
|
+
}
|
|
376
|
+
.rct-root[data-theme='dark'] .rct-axis-minor-tick {
|
|
377
|
+
stroke: #fff;
|
|
378
|
+
stroke-width: 1px;
|
|
379
|
+
shape-rendering: crispEdges;
|
|
380
|
+
opacity: 0.65;
|
|
381
|
+
}
|
|
382
|
+
.rct-root[data-theme='real'] .rct-axis-minor-tick {
|
|
383
|
+
stroke: #f0d9be;
|
|
384
|
+
stroke-width: 1px;
|
|
385
|
+
shape-rendering: crispEdges;
|
|
386
|
+
opacity: 0.65;
|
|
387
|
+
}
|
|
370
388
|
.rct-root .rct-axis-labels {
|
|
371
389
|
font-size: 14px;
|
|
372
390
|
fill: #333;
|
|
@@ -409,6 +427,21 @@
|
|
|
409
427
|
stroke-width: 1px;
|
|
410
428
|
shape-rendering: crispEdges;
|
|
411
429
|
}
|
|
430
|
+
.rct-root .rct-axis-minor-grid-line {
|
|
431
|
+
stroke: #f2f2f2;
|
|
432
|
+
stroke-width: 0.5px;
|
|
433
|
+
shape-rendering: crispEdges;
|
|
434
|
+
}
|
|
435
|
+
.rct-root[data-theme='dark'] .rct-axis-minor-grid-line {
|
|
436
|
+
stroke: #666;
|
|
437
|
+
stroke-width: 0.5px;
|
|
438
|
+
shape-rendering: crispEdges;
|
|
439
|
+
}
|
|
440
|
+
.rct-root[data-theme='real'] .rct-axis-minor-grid-line {
|
|
441
|
+
stroke: #f8efe4;
|
|
442
|
+
stroke-width: 0.5px;
|
|
443
|
+
shape-rendering: crispEdges;
|
|
444
|
+
}
|
|
412
445
|
.rct-root .rct-axis-break {
|
|
413
446
|
stroke: #aaa;
|
|
414
447
|
fill: #fff;
|
|
@@ -1864,6 +1897,10 @@
|
|
|
1864
1897
|
font-size: 20px;
|
|
1865
1898
|
fill: #557;
|
|
1866
1899
|
}
|
|
1900
|
+
.rct-polar-body-inner {
|
|
1901
|
+
font-size: 20px;
|
|
1902
|
+
fill: #557;
|
|
1903
|
+
}
|
|
1867
1904
|
.rct-pie-series-sides {
|
|
1868
1905
|
stroke: none;
|
|
1869
1906
|
}
|
package/ie/split.ie.js
CHANGED
package/ie/treemap.ie.js
CHANGED
package/ie/vector.ie.js
CHANGED