realchart 0.9.4 → 0.9.5
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/README.md +27 -39
- package/dist/index.d.ts +47 -16
- package/dist/index.esm.js +2 -2
- package/dist/index.js +2 -2
- package/dist/realchart-style.css +8 -3
- package/package.json +1 -1
package/dist/realchart-style.css
CHANGED
|
@@ -104,6 +104,8 @@
|
|
|
104
104
|
.rct-root {
|
|
105
105
|
--rct-font-family: AppleSDGothicNeo-Light, 'HelveticaNeue', 'Malgun Gothic', '맑은 고딕', sans-serif;
|
|
106
106
|
--rct-font-size: 16px;
|
|
107
|
+
|
|
108
|
+
--rct-focus-border: red;
|
|
107
109
|
--rct-text-fill: #333;
|
|
108
110
|
|
|
109
111
|
--rct-title-fill: #333;
|
|
@@ -112,7 +114,7 @@
|
|
|
112
114
|
--rct-plot-background-stroke: #ddd;
|
|
113
115
|
|
|
114
116
|
--rct-axis-title-fill: #333;
|
|
115
|
-
--rct-axis-line-stroke: #
|
|
117
|
+
--rct-axis-line-stroke: #aaa;
|
|
116
118
|
--rct-axis-tick-stroke: #555;
|
|
117
119
|
--rct-axis-label-fill: #555;
|
|
118
120
|
--rct-axis-grid-line-stroke: #ddd;
|
|
@@ -120,7 +122,7 @@
|
|
|
120
122
|
--rct-axis-grid-line-stroke-end: none;
|
|
121
123
|
--rct-axis-grid-line-stroke-width: 1px;
|
|
122
124
|
|
|
123
|
-
--rct-legend-background-stroke:
|
|
125
|
+
--rct-legend-background-stroke: none;
|
|
124
126
|
--rct-legend-item-fill: #333;
|
|
125
127
|
--rct-legend-item-disabled: #aaa;
|
|
126
128
|
--rct-legend-item-disabled-decoration: line-through;
|
|
@@ -452,7 +454,10 @@
|
|
|
452
454
|
.rct-line-series-line {
|
|
453
455
|
stroke-width: 1px;
|
|
454
456
|
}
|
|
455
|
-
.rct-line-point
|
|
457
|
+
.rct-line-series .rct-point {
|
|
458
|
+
stroke-dasharray: none;
|
|
459
|
+
}
|
|
460
|
+
.rct-line-series .rct-point[data-focus] {
|
|
456
461
|
/* scale: 2; */
|
|
457
462
|
stroke: var(--rct-focus-border) !important;
|
|
458
463
|
stroke-width: 2px;
|