@evergis/charts 3.1.34 → 3.1.35
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/LICENSE +21 -21
- package/README.md +25 -25
- package/dist/charts.esm.js +405 -405
- package/dist/index.js +405 -405
- package/package.json +2 -2
package/dist/charts.esm.js
CHANGED
|
@@ -6,10 +6,10 @@ import ReactDOMServer from 'react-dom/server';
|
|
|
6
6
|
import { uniqueId } from 'lodash';
|
|
7
7
|
import { unmountComponentAtNode, render } from 'react-dom';
|
|
8
8
|
|
|
9
|
-
const Wrapper = styled.div `
|
|
10
|
-
position: relative;
|
|
11
|
-
width: 100%;
|
|
12
|
-
box-sizing: border-box;
|
|
9
|
+
const Wrapper = styled.div `
|
|
10
|
+
position: relative;
|
|
11
|
+
width: 100%;
|
|
12
|
+
box-sizing: border-box;
|
|
13
13
|
`;
|
|
14
14
|
|
|
15
15
|
function useNode() {
|
|
@@ -107,10 +107,10 @@ const drawMarkers = ({ svg, markers, width, left, top, count, yScale }) => {
|
|
|
107
107
|
});
|
|
108
108
|
};
|
|
109
109
|
|
|
110
|
-
const SwipeScrollContainer = styled.div `
|
|
111
|
-
width: 100%;
|
|
112
|
-
overflow: hidden;
|
|
113
|
-
user-select: none;
|
|
110
|
+
const SwipeScrollContainer = styled.div `
|
|
111
|
+
width: 100%;
|
|
112
|
+
overflow: hidden;
|
|
113
|
+
user-select: none;
|
|
114
114
|
`;
|
|
115
115
|
|
|
116
116
|
function animate({ duration, timing, draw, }) {
|
|
@@ -262,37 +262,37 @@ const getTranslate$1 = ({ anchor, index, translateX, translateY, }) => {
|
|
|
262
262
|
}
|
|
263
263
|
return `translate(${translateX}px, ${translateY}px)`;
|
|
264
264
|
};
|
|
265
|
-
const Label$2 = styled.div `
|
|
266
|
-
display: flex;
|
|
267
|
-
align-items: center;
|
|
268
|
-
font-size: 12px;
|
|
265
|
+
const Label$2 = styled.div `
|
|
266
|
+
display: flex;
|
|
267
|
+
align-items: center;
|
|
268
|
+
font-size: 12px;
|
|
269
269
|
`;
|
|
270
|
-
const Name$1 = styled.div `
|
|
271
|
-
text-align: center;
|
|
272
|
-
max-width: 120px;
|
|
270
|
+
const Name$1 = styled.div `
|
|
271
|
+
text-align: center;
|
|
272
|
+
max-width: 120px;
|
|
273
273
|
`;
|
|
274
|
-
const middleBadgeStyles = css `
|
|
275
|
-
position: absolute;
|
|
276
|
-
top: 50%;
|
|
277
|
-
right: 0;
|
|
278
|
-
transform: translate(calc(100% + 6px), -50%);
|
|
274
|
+
const middleBadgeStyles = css `
|
|
275
|
+
position: absolute;
|
|
276
|
+
top: 50%;
|
|
277
|
+
right: 0;
|
|
278
|
+
transform: translate(calc(100% + 6px), -50%);
|
|
279
279
|
`;
|
|
280
|
-
const DefaultBadge = styled.div `
|
|
281
|
-
display: flex;
|
|
282
|
-
align-items: center;
|
|
283
|
-
padding: 2px 4px;
|
|
284
|
-
border-radius: 4px;
|
|
285
|
-
color: rgb(255, 255, 255);
|
|
286
|
-
background-color: rgb(144, 197, 61);
|
|
287
|
-
margin-left: 8px;
|
|
280
|
+
const DefaultBadge = styled.div `
|
|
281
|
+
display: flex;
|
|
282
|
+
align-items: center;
|
|
283
|
+
padding: 2px 4px;
|
|
284
|
+
border-radius: 4px;
|
|
285
|
+
color: rgb(255, 255, 255);
|
|
286
|
+
background-color: rgb(144, 197, 61);
|
|
287
|
+
margin-left: 8px;
|
|
288
288
|
`;
|
|
289
|
-
const MiddleBadge = styled(DefaultBadge) `
|
|
290
|
-
${middleBadgeStyles}
|
|
289
|
+
const MiddleBadge = styled(DefaultBadge) `
|
|
290
|
+
${middleBadgeStyles}
|
|
291
291
|
`;
|
|
292
|
-
const BadgePrefix = styled.div `
|
|
293
|
-
margin-left: 4px;
|
|
294
|
-
font-size: 10px;
|
|
295
|
-
color: rgba(255, 255, 255, 0.54);
|
|
292
|
+
const BadgePrefix = styled.div `
|
|
293
|
+
margin-left: 4px;
|
|
294
|
+
font-size: 10px;
|
|
295
|
+
color: rgba(255, 255, 255, 0.54);
|
|
296
296
|
`;
|
|
297
297
|
|
|
298
298
|
const radarChartclassNames = {
|
|
@@ -307,29 +307,29 @@ const radarChartclassNames = {
|
|
|
307
307
|
radarLabelBadgePrefix: 'radarLabelBadgePrefix',
|
|
308
308
|
radarCircle: 'radarCircle',
|
|
309
309
|
};
|
|
310
|
-
const SvgWrapper$5 = styled(Wrapper) `
|
|
311
|
-
.${radarChartclassNames.radarAxis} {
|
|
312
|
-
path,
|
|
313
|
-
line,
|
|
314
|
-
circle {
|
|
315
|
-
fill: none;
|
|
316
|
-
stroke-width: 1px;
|
|
317
|
-
stroke: rgba(149, 149, 149, 0.18);
|
|
318
|
-
}
|
|
319
|
-
}
|
|
320
|
-
.${radarChartclassNames.radarAxisText} {
|
|
321
|
-
font-size: 12px;
|
|
322
|
-
fill-opacity: 0.56;
|
|
323
|
-
}
|
|
324
|
-
.${radarChartclassNames.radarPolygon} {
|
|
325
|
-
fill-opacity: 0.06;
|
|
326
|
-
stroke-width: 2px;
|
|
327
|
-
fill: rgb(144, 197, 61);
|
|
328
|
-
stroke: rgb(144, 197, 61);
|
|
329
|
-
}
|
|
330
|
-
.${radarChartclassNames.radarCircle} {
|
|
331
|
-
fill: rgb(144, 197, 61);
|
|
332
|
-
}
|
|
310
|
+
const SvgWrapper$5 = styled(Wrapper) `
|
|
311
|
+
.${radarChartclassNames.radarAxis} {
|
|
312
|
+
path,
|
|
313
|
+
line,
|
|
314
|
+
circle {
|
|
315
|
+
fill: none;
|
|
316
|
+
stroke-width: 1px;
|
|
317
|
+
stroke: rgba(149, 149, 149, 0.18);
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
.${radarChartclassNames.radarAxisText} {
|
|
321
|
+
font-size: 12px;
|
|
322
|
+
fill-opacity: 0.56;
|
|
323
|
+
}
|
|
324
|
+
.${radarChartclassNames.radarPolygon} {
|
|
325
|
+
fill-opacity: 0.06;
|
|
326
|
+
stroke-width: 2px;
|
|
327
|
+
fill: rgb(144, 197, 61);
|
|
328
|
+
stroke: rgb(144, 197, 61);
|
|
329
|
+
}
|
|
330
|
+
.${radarChartclassNames.radarCircle} {
|
|
331
|
+
fill: rgb(144, 197, 61);
|
|
332
|
+
}
|
|
333
333
|
`;
|
|
334
334
|
|
|
335
335
|
const getTranslate = ({ anchor, index, translateX, translateY, }) => {
|
|
@@ -351,8 +351,8 @@ const LabelContainer$1 = styled.div.attrs(props => ({
|
|
|
351
351
|
style: {
|
|
352
352
|
transform: getTranslate(props),
|
|
353
353
|
},
|
|
354
|
-
})) `
|
|
355
|
-
position: absolute;
|
|
354
|
+
})) `
|
|
355
|
+
position: absolute;
|
|
356
356
|
`;
|
|
357
357
|
|
|
358
358
|
const degByIndex = (index, count) => {
|
|
@@ -616,24 +616,24 @@ const pieChartclassNames = {
|
|
|
616
616
|
pieTooltipColorBox: 'pieTooltipColorBox',
|
|
617
617
|
pieFullChartTooltipCircle: 'pieFullChartTooltipCircle',
|
|
618
618
|
};
|
|
619
|
-
const SvgWrapper$4 = styled(Wrapper) `
|
|
620
|
-
.${pieChartclassNames.pieSliceLabel} {
|
|
621
|
-
fill: #4a4a4a;
|
|
622
|
-
}
|
|
623
|
-
|
|
624
|
-
.${pieChartclassNames.pieRadialLabel} {
|
|
625
|
-
position: absolute;
|
|
626
|
-
max-width: 128px;
|
|
627
|
-
}
|
|
628
|
-
|
|
629
|
-
.${pieChartclassNames.pieRadialLink} {
|
|
630
|
-
stroke: #000;
|
|
631
|
-
}
|
|
632
|
-
|
|
633
|
-
.${pieChartclassNames.pieFullChartTooltipCircle} {
|
|
634
|
-
fill: transparent;
|
|
635
|
-
cursor: pointer;
|
|
636
|
-
}
|
|
619
|
+
const SvgWrapper$4 = styled(Wrapper) `
|
|
620
|
+
.${pieChartclassNames.pieSliceLabel} {
|
|
621
|
+
fill: #4a4a4a;
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
.${pieChartclassNames.pieRadialLabel} {
|
|
625
|
+
position: absolute;
|
|
626
|
+
max-width: 128px;
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
.${pieChartclassNames.pieRadialLink} {
|
|
630
|
+
stroke: #000;
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
.${pieChartclassNames.pieFullChartTooltipCircle} {
|
|
634
|
+
fill: transparent;
|
|
635
|
+
cursor: pointer;
|
|
636
|
+
}
|
|
637
637
|
`;
|
|
638
638
|
|
|
639
639
|
function radiansToDegrees(radians) {
|
|
@@ -733,90 +733,90 @@ const drawRadialLabels = ({ arc, enableRadialLabels, global, node, radius, dataR
|
|
|
733
733
|
}
|
|
734
734
|
};
|
|
735
735
|
|
|
736
|
-
const TooltipFlex$1 = styled.div `
|
|
737
|
-
width: 0;
|
|
738
|
-
height: 0;
|
|
739
|
-
display: flex;
|
|
740
|
-
align-items: flex-end;
|
|
741
|
-
justify-content: center;
|
|
742
|
-
pointer-events: none;
|
|
743
|
-
white-space: nowrap;
|
|
736
|
+
const TooltipFlex$1 = styled.div `
|
|
737
|
+
width: 0;
|
|
738
|
+
height: 0;
|
|
739
|
+
display: flex;
|
|
740
|
+
align-items: flex-end;
|
|
741
|
+
justify-content: center;
|
|
742
|
+
pointer-events: none;
|
|
743
|
+
white-space: nowrap;
|
|
744
744
|
`;
|
|
745
745
|
const LabelFlex = styled(TooltipFlex$1) ``;
|
|
746
|
-
const LabelFlexCenter = styled(LabelFlex) `
|
|
747
|
-
align-items: center;
|
|
746
|
+
const LabelFlexCenter = styled(LabelFlex) `
|
|
747
|
+
align-items: center;
|
|
748
748
|
`;
|
|
749
|
-
const TooltipContainer = styled.div `
|
|
750
|
-
position: relative;
|
|
751
|
-
font-size: 11px;
|
|
752
|
-
color: #fff;
|
|
753
|
-
margin-bottom: 8px;
|
|
754
|
-
padding: 4px 6px;
|
|
755
|
-
background-color: rgba(48, 69, 79, 1);
|
|
756
|
-
border-radius: 4px;
|
|
757
|
-
box-shadow: 0 0.1875rem 0.5rem rgba(48, 69, 79, 0.06);
|
|
758
|
-
|
|
759
|
-
:before {
|
|
760
|
-
content: '';
|
|
761
|
-
position: absolute;
|
|
762
|
-
bottom: 0;
|
|
763
|
-
left: 50%;
|
|
764
|
-
transform: translate(-50%, 100%);
|
|
765
|
-
width: 0;
|
|
766
|
-
height: 0;
|
|
767
|
-
border-style: solid;
|
|
768
|
-
border-width: 4px 3px 0 3px;
|
|
769
|
-
border-color: rgba(48, 69, 79, 1) transparent transparent transparent;
|
|
770
|
-
}
|
|
749
|
+
const TooltipContainer = styled.div `
|
|
750
|
+
position: relative;
|
|
751
|
+
font-size: 11px;
|
|
752
|
+
color: #fff;
|
|
753
|
+
margin-bottom: 8px;
|
|
754
|
+
padding: 4px 6px;
|
|
755
|
+
background-color: rgba(48, 69, 79, 1);
|
|
756
|
+
border-radius: 4px;
|
|
757
|
+
box-shadow: 0 0.1875rem 0.5rem rgba(48, 69, 79, 0.06);
|
|
758
|
+
|
|
759
|
+
:before {
|
|
760
|
+
content: '';
|
|
761
|
+
position: absolute;
|
|
762
|
+
bottom: 0;
|
|
763
|
+
left: 50%;
|
|
764
|
+
transform: translate(-50%, 100%);
|
|
765
|
+
width: 0;
|
|
766
|
+
height: 0;
|
|
767
|
+
border-style: solid;
|
|
768
|
+
border-width: 4px 3px 0 3px;
|
|
769
|
+
border-color: rgba(48, 69, 79, 1) transparent transparent transparent;
|
|
770
|
+
}
|
|
771
771
|
`;
|
|
772
|
-
const TooltipGroupName = styled.div `
|
|
773
|
-
font-size: 14px;
|
|
774
|
-
margin-bottom: 6px;
|
|
772
|
+
const TooltipGroupName = styled.div `
|
|
773
|
+
font-size: 14px;
|
|
774
|
+
margin-bottom: 6px;
|
|
775
775
|
`;
|
|
776
|
-
const TooltipItem = styled.div `
|
|
777
|
-
display: flex;
|
|
778
|
-
align-items: center;
|
|
779
|
-
margin-bottom: 0.25rem;
|
|
780
|
-
|
|
781
|
-
&:last-of-type {
|
|
782
|
-
margin-bottom: 0;
|
|
783
|
-
}
|
|
776
|
+
const TooltipItem = styled.div `
|
|
777
|
+
display: flex;
|
|
778
|
+
align-items: center;
|
|
779
|
+
margin-bottom: 0.25rem;
|
|
780
|
+
|
|
781
|
+
&:last-of-type {
|
|
782
|
+
margin-bottom: 0;
|
|
783
|
+
}
|
|
784
784
|
`;
|
|
785
|
-
const ColFlex = styled.div `
|
|
786
|
-
display: flex;
|
|
787
|
-
align-items: center;
|
|
788
|
-
margin-right: 4px;
|
|
785
|
+
const ColFlex = styled.div `
|
|
786
|
+
display: flex;
|
|
787
|
+
align-items: center;
|
|
788
|
+
margin-right: 4px;
|
|
789
789
|
`;
|
|
790
|
-
const ColorBox = styled.div `
|
|
791
|
-
margin-right: 4px;
|
|
792
|
-
width: 10px;
|
|
793
|
-
height: 10px;
|
|
794
|
-
border-radius: 2px;
|
|
790
|
+
const ColorBox = styled.div `
|
|
791
|
+
margin-right: 4px;
|
|
792
|
+
width: 10px;
|
|
793
|
+
height: 10px;
|
|
794
|
+
border-radius: 2px;
|
|
795
795
|
`;
|
|
796
|
-
const ColorLine = styled(ColorBox) `
|
|
797
|
-
height: 2px;
|
|
798
|
-
border-radius: 0;
|
|
796
|
+
const ColorLine = styled(ColorBox) `
|
|
797
|
+
height: 2px;
|
|
798
|
+
border-radius: 0;
|
|
799
799
|
`;
|
|
800
|
-
const Name = styled.div `
|
|
801
|
-
margin-right: 4px;
|
|
800
|
+
const Name = styled.div `
|
|
801
|
+
margin-right: 4px;
|
|
802
802
|
`;
|
|
803
|
-
const Value = styled.div `
|
|
804
|
-
text-align: right;
|
|
805
|
-
flex-shrink: 0;
|
|
806
|
-
flex-grow: 1;
|
|
803
|
+
const Value = styled.div `
|
|
804
|
+
text-align: right;
|
|
805
|
+
flex-shrink: 0;
|
|
806
|
+
flex-grow: 1;
|
|
807
807
|
`;
|
|
808
|
-
const Label$1 = styled.div `
|
|
809
|
-
position: relative;
|
|
810
|
-
font-size: 11px;
|
|
811
|
-
color: #fff;
|
|
812
|
-
font-weight: bold;
|
|
813
|
-
letter-spacing: 0.52px;
|
|
808
|
+
const Label$1 = styled.div `
|
|
809
|
+
position: relative;
|
|
810
|
+
font-size: 11px;
|
|
811
|
+
color: #fff;
|
|
812
|
+
font-weight: bold;
|
|
813
|
+
letter-spacing: 0.52px;
|
|
814
814
|
`;
|
|
815
|
-
const LabelTop = styled(Label$1) `
|
|
816
|
-
top: 6px;
|
|
815
|
+
const LabelTop = styled(Label$1) `
|
|
816
|
+
top: 6px;
|
|
817
817
|
`;
|
|
818
|
-
const LabelBottom = styled(Label$1) `
|
|
819
|
-
bottom: 6px;
|
|
818
|
+
const LabelBottom = styled(Label$1) `
|
|
819
|
+
bottom: 6px;
|
|
820
820
|
`;
|
|
821
821
|
|
|
822
822
|
const drawTooltip$3 = ({ fullChartTooltip, global, tooltipRoot, data, tooltipClassName, tooltipBind, renderTooltip, arc, allSlices, tooltipStyle, width, height, radius, }) => {
|
|
@@ -1205,53 +1205,53 @@ const calendarChartClassNames = {
|
|
|
1205
1205
|
...legendClassNames,
|
|
1206
1206
|
};
|
|
1207
1207
|
const headerHeight = "20px";
|
|
1208
|
-
const SvgWrapper$3 = styled(Wrapper) `
|
|
1209
|
-
.${calendarChartClassNames.calendarYear} {
|
|
1210
|
-
display: flex;
|
|
1211
|
-
margin-bottom: 16px;
|
|
1212
|
-
}
|
|
1213
|
-
|
|
1214
|
-
.${calendarChartClassNames.calendarYearTitle} {
|
|
1215
|
-
display: inline-flex;
|
|
1216
|
-
align-items: flex-end;
|
|
1217
|
-
height: ${headerHeight};
|
|
1218
|
-
margin-bottom: 4px;
|
|
1219
|
-
font-weight: bold;
|
|
1220
|
-
}
|
|
1221
|
-
|
|
1222
|
-
.${calendarChartClassNames.calendarHeader} {
|
|
1223
|
-
height: ${headerHeight};
|
|
1224
|
-
margin-bottom: 4px;
|
|
1225
|
-
position: relative;
|
|
1226
|
-
display: flex;
|
|
1227
|
-
}
|
|
1228
|
-
|
|
1229
|
-
.${calendarChartClassNames.calendarMonth} {
|
|
1230
|
-
font-size: 14px;
|
|
1231
|
-
bottom: 0;
|
|
1232
|
-
position: absolute;
|
|
1233
|
-
}
|
|
1234
|
-
|
|
1235
|
-
.${calendarChartClassNames.calendarAxis} {
|
|
1236
|
-
display: flex;
|
|
1237
|
-
flex-direction: column;
|
|
1238
|
-
margin-right: 10px;
|
|
1239
|
-
}
|
|
1240
|
-
|
|
1241
|
-
.${calendarChartClassNames.calendarWeekDay} {
|
|
1242
|
-
font-size: 12px;
|
|
1243
|
-
display: inline-flex;
|
|
1244
|
-
align-items: center;
|
|
1245
|
-
justify-content: flex-end;
|
|
1246
|
-
}
|
|
1247
|
-
|
|
1248
|
-
.${calendarChartClassNames.calendarDays} {
|
|
1249
|
-
position: relative;
|
|
1250
|
-
}
|
|
1251
|
-
|
|
1252
|
-
.${calendarChartClassNames.calendarDay} {
|
|
1253
|
-
position: absolute;
|
|
1254
|
-
}
|
|
1208
|
+
const SvgWrapper$3 = styled(Wrapper) `
|
|
1209
|
+
.${calendarChartClassNames.calendarYear} {
|
|
1210
|
+
display: flex;
|
|
1211
|
+
margin-bottom: 16px;
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1214
|
+
.${calendarChartClassNames.calendarYearTitle} {
|
|
1215
|
+
display: inline-flex;
|
|
1216
|
+
align-items: flex-end;
|
|
1217
|
+
height: ${headerHeight};
|
|
1218
|
+
margin-bottom: 4px;
|
|
1219
|
+
font-weight: bold;
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1222
|
+
.${calendarChartClassNames.calendarHeader} {
|
|
1223
|
+
height: ${headerHeight};
|
|
1224
|
+
margin-bottom: 4px;
|
|
1225
|
+
position: relative;
|
|
1226
|
+
display: flex;
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
.${calendarChartClassNames.calendarMonth} {
|
|
1230
|
+
font-size: 14px;
|
|
1231
|
+
bottom: 0;
|
|
1232
|
+
position: absolute;
|
|
1233
|
+
}
|
|
1234
|
+
|
|
1235
|
+
.${calendarChartClassNames.calendarAxis} {
|
|
1236
|
+
display: flex;
|
|
1237
|
+
flex-direction: column;
|
|
1238
|
+
margin-right: 10px;
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1241
|
+
.${calendarChartClassNames.calendarWeekDay} {
|
|
1242
|
+
font-size: 12px;
|
|
1243
|
+
display: inline-flex;
|
|
1244
|
+
align-items: center;
|
|
1245
|
+
justify-content: flex-end;
|
|
1246
|
+
}
|
|
1247
|
+
|
|
1248
|
+
.${calendarChartClassNames.calendarDays} {
|
|
1249
|
+
position: relative;
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
.${calendarChartClassNames.calendarDay} {
|
|
1253
|
+
position: absolute;
|
|
1254
|
+
}
|
|
1255
1255
|
`;
|
|
1256
1256
|
|
|
1257
1257
|
const draw$3 = (node, props) => {
|
|
@@ -1478,67 +1478,67 @@ const lineChartClassNames = {
|
|
|
1478
1478
|
lineChartMouseLabelContainer: "lineChartMouseLabelContainer",
|
|
1479
1479
|
lineChartMouseLabel: "lineChartMouseLabel",
|
|
1480
1480
|
};
|
|
1481
|
-
const SvgWrapper$2 = styled(Wrapper) `
|
|
1482
|
-
.${lineChartClassNames.lineChartYScaleGlobal},
|
|
1483
|
-
.${lineChartClassNames.lineChartXScaleGlobal},
|
|
1484
|
-
.${lineChartClassNames.lineChartGridGlobal} {
|
|
1485
|
-
shape-rendering: crispEdges;
|
|
1486
|
-
}
|
|
1487
|
-
|
|
1488
|
-
.${lineChartClassNames.lineChartLinesGlobal} {
|
|
1489
|
-
fill: none;
|
|
1490
|
-
stroke: steelblue;
|
|
1491
|
-
stroke-width: 1.5px;
|
|
1492
|
-
stroke-linejoin: round;
|
|
1493
|
-
stroke-linecap: round;
|
|
1494
|
-
}
|
|
1495
|
-
|
|
1496
|
-
.${lineChartClassNames.lineChartArea} {
|
|
1497
|
-
fill-opacity: 0.24;
|
|
1498
|
-
}
|
|
1499
|
-
|
|
1500
|
-
.${lineChartClassNames.lineChartGridLineX},
|
|
1501
|
-
.${lineChartClassNames.lineChartGridLineY},
|
|
1502
|
-
.${lineChartClassNames.lineChartMouseLine} {
|
|
1503
|
-
stroke: rgba(149, 149, 149, 0.24);
|
|
1504
|
-
}
|
|
1505
|
-
|
|
1506
|
-
.${lineChartClassNames.lineChartMouseLine},
|
|
1507
|
-
.${lineChartClassNames.lineChartMouseCircle} {
|
|
1508
|
-
transition: opacity linear 200ms;
|
|
1509
|
-
pointer-events: none;
|
|
1510
|
-
stroke-width: 1px;
|
|
1511
|
-
}
|
|
1512
|
-
|
|
1513
|
-
.${lineChartClassNames.lineChartDot} {
|
|
1514
|
-
stroke: #fff;
|
|
1515
|
-
stroke-width: 2px;
|
|
1516
|
-
}
|
|
1517
|
-
|
|
1518
|
-
.${lineChartClassNames.lineChartMouseLine} {
|
|
1519
|
-
shape-rendering: crispEdges;
|
|
1520
|
-
}
|
|
1521
|
-
|
|
1522
|
-
.${lineChartClassNames.lineChartMouseRect} {
|
|
1523
|
-
fill: none;
|
|
1524
|
-
pointer-events: all;
|
|
1525
|
-
}
|
|
1481
|
+
const SvgWrapper$2 = styled(Wrapper) `
|
|
1482
|
+
.${lineChartClassNames.lineChartYScaleGlobal},
|
|
1483
|
+
.${lineChartClassNames.lineChartXScaleGlobal},
|
|
1484
|
+
.${lineChartClassNames.lineChartGridGlobal} {
|
|
1485
|
+
shape-rendering: crispEdges;
|
|
1486
|
+
}
|
|
1487
|
+
|
|
1488
|
+
.${lineChartClassNames.lineChartLinesGlobal} {
|
|
1489
|
+
fill: none;
|
|
1490
|
+
stroke: steelblue;
|
|
1491
|
+
stroke-width: 1.5px;
|
|
1492
|
+
stroke-linejoin: round;
|
|
1493
|
+
stroke-linecap: round;
|
|
1494
|
+
}
|
|
1495
|
+
|
|
1496
|
+
.${lineChartClassNames.lineChartArea} {
|
|
1497
|
+
fill-opacity: 0.24;
|
|
1498
|
+
}
|
|
1499
|
+
|
|
1500
|
+
.${lineChartClassNames.lineChartGridLineX},
|
|
1501
|
+
.${lineChartClassNames.lineChartGridLineY},
|
|
1502
|
+
.${lineChartClassNames.lineChartMouseLine} {
|
|
1503
|
+
stroke: rgba(149, 149, 149, 0.24);
|
|
1504
|
+
}
|
|
1505
|
+
|
|
1506
|
+
.${lineChartClassNames.lineChartMouseLine},
|
|
1507
|
+
.${lineChartClassNames.lineChartMouseCircle} {
|
|
1508
|
+
transition: opacity linear 200ms;
|
|
1509
|
+
pointer-events: none;
|
|
1510
|
+
stroke-width: 1px;
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
.${lineChartClassNames.lineChartDot} {
|
|
1514
|
+
stroke: #fff;
|
|
1515
|
+
stroke-width: 2px;
|
|
1516
|
+
}
|
|
1517
|
+
|
|
1518
|
+
.${lineChartClassNames.lineChartMouseLine} {
|
|
1519
|
+
shape-rendering: crispEdges;
|
|
1520
|
+
}
|
|
1521
|
+
|
|
1522
|
+
.${lineChartClassNames.lineChartMouseRect} {
|
|
1523
|
+
fill: none;
|
|
1524
|
+
pointer-events: all;
|
|
1525
|
+
}
|
|
1526
1526
|
`;
|
|
1527
|
-
const TooltipStyles$2 = createGlobalStyle `
|
|
1528
|
-
.${lineChartClassNames.lineChartMouseLabel} {
|
|
1529
|
-
transition: opacity linear 200ms;
|
|
1530
|
-
z-index: 100;
|
|
1531
|
-
|
|
1532
|
-
.${lineChartClassNames.lineChartLabelFlex} {
|
|
1533
|
-
justify-content: flex-start;
|
|
1534
|
-
align-items: center;
|
|
1535
|
-
pointer-events: none;
|
|
1536
|
-
}
|
|
1537
|
-
|
|
1538
|
-
.${lineChartClassNames.lineChartLabel} {
|
|
1539
|
-
margin: 0 0 0 10px;
|
|
1540
|
-
}
|
|
1541
|
-
}
|
|
1527
|
+
const TooltipStyles$2 = createGlobalStyle `
|
|
1528
|
+
.${lineChartClassNames.lineChartMouseLabel} {
|
|
1529
|
+
transition: opacity linear 200ms;
|
|
1530
|
+
z-index: 100;
|
|
1531
|
+
|
|
1532
|
+
.${lineChartClassNames.lineChartLabelFlex} {
|
|
1533
|
+
justify-content: flex-start;
|
|
1534
|
+
align-items: center;
|
|
1535
|
+
pointer-events: none;
|
|
1536
|
+
}
|
|
1537
|
+
|
|
1538
|
+
.${lineChartClassNames.lineChartLabel} {
|
|
1539
|
+
margin: 0 0 0 10px;
|
|
1540
|
+
}
|
|
1541
|
+
}
|
|
1542
1542
|
`;
|
|
1543
1543
|
|
|
1544
1544
|
const drawGrid$2 = ({ svg, yScale, xScale, yTicksCount, lastIndex, drawGridX, drawGridY, }) => {
|
|
@@ -1574,17 +1574,17 @@ const drawGrid$2 = ({ svg, yScale, xScale, yTicksCount, lastIndex, drawGridX, dr
|
|
|
1574
1574
|
}
|
|
1575
1575
|
};
|
|
1576
1576
|
|
|
1577
|
-
const LabelContainer = styled.div `
|
|
1578
|
-
width: 0;
|
|
1579
|
-
height: 0;
|
|
1580
|
-
display: flex;
|
|
1581
|
-
align-items: flex-end;
|
|
1582
|
-
justify-content: center;
|
|
1583
|
-
font-size: 12px;
|
|
1584
|
-
white-space: nowrap;
|
|
1577
|
+
const LabelContainer = styled.div `
|
|
1578
|
+
width: 0;
|
|
1579
|
+
height: 0;
|
|
1580
|
+
display: flex;
|
|
1581
|
+
align-items: flex-end;
|
|
1582
|
+
justify-content: center;
|
|
1583
|
+
font-size: 12px;
|
|
1584
|
+
white-space: nowrap;
|
|
1585
1585
|
`;
|
|
1586
|
-
const Label = styled.div `
|
|
1587
|
-
margin-bottom: 4px;
|
|
1586
|
+
const Label = styled.div `
|
|
1587
|
+
margin-bottom: 4px;
|
|
1588
1588
|
`;
|
|
1589
1589
|
|
|
1590
1590
|
const labelClassName = "d3-chart-label";
|
|
@@ -2178,66 +2178,66 @@ const barChartClassNames = {
|
|
|
2178
2178
|
...labelClassnames,
|
|
2179
2179
|
...barChartLinesClassNames,
|
|
2180
2180
|
};
|
|
2181
|
-
const SvgWrapper$1 = styled(Wrapper) `
|
|
2182
|
-
display: ${({ selectable }) => selectable && "inline-block"};
|
|
2183
|
-
user-select: ${({ selectable }) => selectable && "none"};
|
|
2184
|
-
width: ${({ selectable }) => selectable && "auto"};
|
|
2185
|
-
|
|
2186
|
-
line {
|
|
2187
|
-
stroke-width: 1px;
|
|
2188
|
-
shape-rendering: crispEdges;
|
|
2189
|
-
}
|
|
2190
|
-
|
|
2191
|
-
.${barChartClassNames.barChartGridLineX},
|
|
2192
|
-
.${barChartClassNames.barChartGridLineY} {
|
|
2193
|
-
stroke: rgba(48, 69, 79, 0.06);
|
|
2194
|
-
}
|
|
2195
|
-
|
|
2196
|
-
.${barChartClassNames.barChartMouseRect} {
|
|
2197
|
-
}
|
|
2198
|
-
|
|
2199
|
-
.${barChartClassNames.barChartMouseRect} {
|
|
2200
|
-
fill: none;
|
|
2201
|
-
pointer-events: all;
|
|
2202
|
-
}
|
|
2203
|
-
|
|
2204
|
-
.${barChartClassNames.barChartLinesGlobal} {
|
|
2205
|
-
stroke-width: 1.5px;
|
|
2206
|
-
stroke-linejoin: round;
|
|
2207
|
-
stroke-linecap: round;
|
|
2208
|
-
}
|
|
2209
|
-
|
|
2210
|
-
.${barChartClassNames.barChartLine} {
|
|
2211
|
-
shape-rendering: auto;
|
|
2212
|
-
}
|
|
2213
|
-
|
|
2214
|
-
.${barChartClassNames.barChartArea} {
|
|
2215
|
-
fill-opacity: 0.24;
|
|
2216
|
-
}
|
|
2217
|
-
|
|
2218
|
-
.${barChartClassNames.barChartSelection} {
|
|
2219
|
-
position: absolute;
|
|
2220
|
-
top: 0;
|
|
2221
|
-
width: 0;
|
|
2222
|
-
background: rgba(0, 170, 255, 0.06);
|
|
2223
|
-
box-shadow: 1px 0 0 #00AAFF, -1px 0 0 #00AAFF;
|
|
2224
|
-
pointer-events: none;
|
|
2225
|
-
}
|
|
2181
|
+
const SvgWrapper$1 = styled(Wrapper) `
|
|
2182
|
+
display: ${({ selectable }) => selectable && "inline-block"};
|
|
2183
|
+
user-select: ${({ selectable }) => selectable && "none"};
|
|
2184
|
+
width: ${({ selectable }) => selectable && "auto"};
|
|
2185
|
+
|
|
2186
|
+
line {
|
|
2187
|
+
stroke-width: 1px;
|
|
2188
|
+
shape-rendering: crispEdges;
|
|
2189
|
+
}
|
|
2190
|
+
|
|
2191
|
+
.${barChartClassNames.barChartGridLineX},
|
|
2192
|
+
.${barChartClassNames.barChartGridLineY} {
|
|
2193
|
+
stroke: rgba(48, 69, 79, 0.06);
|
|
2194
|
+
}
|
|
2195
|
+
|
|
2196
|
+
.${barChartClassNames.barChartMouseRect} {
|
|
2197
|
+
}
|
|
2198
|
+
|
|
2199
|
+
.${barChartClassNames.barChartMouseRect} {
|
|
2200
|
+
fill: none;
|
|
2201
|
+
pointer-events: all;
|
|
2202
|
+
}
|
|
2203
|
+
|
|
2204
|
+
.${barChartClassNames.barChartLinesGlobal} {
|
|
2205
|
+
stroke-width: 1.5px;
|
|
2206
|
+
stroke-linejoin: round;
|
|
2207
|
+
stroke-linecap: round;
|
|
2208
|
+
}
|
|
2209
|
+
|
|
2210
|
+
.${barChartClassNames.barChartLine} {
|
|
2211
|
+
shape-rendering: auto;
|
|
2212
|
+
}
|
|
2213
|
+
|
|
2214
|
+
.${barChartClassNames.barChartArea} {
|
|
2215
|
+
fill-opacity: 0.24;
|
|
2216
|
+
}
|
|
2217
|
+
|
|
2218
|
+
.${barChartClassNames.barChartSelection} {
|
|
2219
|
+
position: absolute;
|
|
2220
|
+
top: 0;
|
|
2221
|
+
width: 0;
|
|
2222
|
+
background: rgba(0, 170, 255, 0.06);
|
|
2223
|
+
box-shadow: 1px 0 0 #00AAFF, -1px 0 0 #00AAFF;
|
|
2224
|
+
pointer-events: none;
|
|
2225
|
+
}
|
|
2226
2226
|
`;
|
|
2227
|
-
const TooltipStyles$1 = createGlobalStyle `
|
|
2228
|
-
.${barChartClassNames.barChartMouseTooltip} {
|
|
2229
|
-
z-index: 100;
|
|
2230
|
-
transition: all linear 144ms;
|
|
2231
|
-
|
|
2232
|
-
.${barChartClassNames.barChartTooltipItem} {
|
|
2233
|
-
padding: 0.125rem;
|
|
2234
|
-
margin-bottom: 4px;
|
|
2235
|
-
|
|
2236
|
-
:last-of-type {
|
|
2237
|
-
margin-bottom: 0;
|
|
2238
|
-
}
|
|
2239
|
-
}
|
|
2240
|
-
}
|
|
2227
|
+
const TooltipStyles$1 = createGlobalStyle `
|
|
2228
|
+
.${barChartClassNames.barChartMouseTooltip} {
|
|
2229
|
+
z-index: 100;
|
|
2230
|
+
transition: all linear 144ms;
|
|
2231
|
+
|
|
2232
|
+
.${barChartClassNames.barChartTooltipItem} {
|
|
2233
|
+
padding: 0.125rem;
|
|
2234
|
+
margin-bottom: 4px;
|
|
2235
|
+
|
|
2236
|
+
:last-of-type {
|
|
2237
|
+
margin-bottom: 0;
|
|
2238
|
+
}
|
|
2239
|
+
}
|
|
2240
|
+
}
|
|
2241
2241
|
`;
|
|
2242
2242
|
|
|
2243
2243
|
const useSelection = (node, props) => {
|
|
@@ -3045,45 +3045,45 @@ const horizontalBarChartClassNames = {
|
|
|
3045
3045
|
horizontalBarChartTooltipName: "horizontalBarChartTooltipName",
|
|
3046
3046
|
horizontalBarChartTooltipValue: "horizontalBarChartTooltipValue",
|
|
3047
3047
|
};
|
|
3048
|
-
const Table = styled.table `
|
|
3049
|
-
width: 100%;
|
|
3048
|
+
const Table = styled.table `
|
|
3049
|
+
width: 100%;
|
|
3050
3050
|
`;
|
|
3051
|
-
const LabelCell = styled.div `
|
|
3052
|
-
text-align: right;
|
|
3051
|
+
const LabelCell = styled.div `
|
|
3052
|
+
text-align: right;
|
|
3053
3053
|
`;
|
|
3054
|
-
const BarFlex = styled.div `
|
|
3055
|
-
width: 100%;
|
|
3056
|
-
display: flex;
|
|
3057
|
-
height: 1rem;
|
|
3054
|
+
const BarFlex = styled.div `
|
|
3055
|
+
width: 100%;
|
|
3056
|
+
display: flex;
|
|
3057
|
+
height: 1rem;
|
|
3058
3058
|
`;
|
|
3059
|
-
const BarsTd = styled.td `
|
|
3060
|
-
width: 100%;
|
|
3061
|
-
position: relative;
|
|
3062
|
-
vertical-align: middle;
|
|
3059
|
+
const BarsTd = styled.td `
|
|
3060
|
+
width: 100%;
|
|
3061
|
+
position: relative;
|
|
3062
|
+
vertical-align: middle;
|
|
3063
3063
|
`;
|
|
3064
|
-
const TooltipFlex = styled(TooltipFlex$1) `
|
|
3065
|
-
position: absolute;
|
|
3066
|
-
top: 0;
|
|
3067
|
-
left: 50%;
|
|
3068
|
-
transform: translate(-50%, -50%);
|
|
3069
|
-
will-change: left, top;
|
|
3064
|
+
const TooltipFlex = styled(TooltipFlex$1) `
|
|
3065
|
+
position: absolute;
|
|
3066
|
+
top: 0;
|
|
3067
|
+
left: 50%;
|
|
3068
|
+
transform: translate(-50%, -50%);
|
|
3069
|
+
will-change: left, top;
|
|
3070
3070
|
`;
|
|
3071
|
-
const StackSumContainer = styled.div `
|
|
3072
|
-
position: relative;
|
|
3071
|
+
const StackSumContainer = styled.div `
|
|
3072
|
+
position: relative;
|
|
3073
3073
|
`;
|
|
3074
|
-
const StackSum = styled.div `
|
|
3075
|
-
white-space: nowrap;
|
|
3076
|
-
position: absolute;
|
|
3077
|
-
top: 50%;
|
|
3078
|
-
left: 50%;
|
|
3079
|
-
transform: translate(0, -50%);
|
|
3074
|
+
const StackSum = styled.div `
|
|
3075
|
+
white-space: nowrap;
|
|
3076
|
+
position: absolute;
|
|
3077
|
+
top: 50%;
|
|
3078
|
+
left: 50%;
|
|
3079
|
+
transform: translate(0, -50%);
|
|
3080
3080
|
`;
|
|
3081
|
-
const StackWrapper = styled.div `
|
|
3082
|
-
position: absolute;
|
|
3083
|
-
top: 0;
|
|
3084
|
-
display: flex;
|
|
3085
|
-
justify-content: flex-start;
|
|
3086
|
-
height: 100%;
|
|
3081
|
+
const StackWrapper = styled.div `
|
|
3082
|
+
position: absolute;
|
|
3083
|
+
top: 0;
|
|
3084
|
+
display: flex;
|
|
3085
|
+
justify-content: flex-start;
|
|
3086
|
+
height: 100%;
|
|
3087
3087
|
`;
|
|
3088
3088
|
|
|
3089
3089
|
const Tooltip$1 = ({ renderTooltip, bars, style, className, }) => {
|
|
@@ -3135,10 +3135,10 @@ const useStackWrapper = (stackedTooltip) => {
|
|
|
3135
3135
|
: ({ children }) => (jsx(Fragment$1, { children: children })), [stackedTooltip]);
|
|
3136
3136
|
};
|
|
3137
3137
|
|
|
3138
|
-
const BarStyled = styled.div `
|
|
3139
|
-
position: relative;
|
|
3140
|
-
display: inline-flex;
|
|
3141
|
-
height: 100%;
|
|
3138
|
+
const BarStyled = styled.div `
|
|
3139
|
+
position: relative;
|
|
3140
|
+
display: inline-flex;
|
|
3141
|
+
height: 100%;
|
|
3142
3142
|
`;
|
|
3143
3143
|
|
|
3144
3144
|
const Bar = ({ withTooltip, bar, formatNativeTitle, tooltipBind, mouseMove, mouseLeave, pointerEventsNone, isFirstChild, isLastChild, isOnlyChild, }) => {
|
|
@@ -3155,23 +3155,23 @@ const Bar = ({ withTooltip, bar, formatNativeTitle, tooltipBind, mouseMove, mous
|
|
|
3155
3155
|
}, title: formatNativeTitle ? formatNativeTitle(bar) : "", onMouseOver: onMouseMove, onMouseMove: tooltipBind ? onMouseMove : void 0, onMouseOut: onMouseLeave }));
|
|
3156
3156
|
};
|
|
3157
3157
|
|
|
3158
|
-
const TickTd = styled.td `
|
|
3159
|
-
position: relative;
|
|
3158
|
+
const TickTd = styled.td `
|
|
3159
|
+
position: relative;
|
|
3160
3160
|
`;
|
|
3161
|
-
const Ticks = styled.div `
|
|
3162
|
-
position: relative;
|
|
3163
|
-
height: 1rem;
|
|
3161
|
+
const Ticks = styled.div `
|
|
3162
|
+
position: relative;
|
|
3163
|
+
height: 1rem;
|
|
3164
3164
|
`;
|
|
3165
|
-
const Tick = styled.div `
|
|
3166
|
-
white-space: nowrap;
|
|
3167
|
-
width: 0;
|
|
3168
|
-
height: 0;
|
|
3169
|
-
position: absolute;
|
|
3170
|
-
top: 50%;
|
|
3171
|
-
transform: translateY(-50%);
|
|
3172
|
-
display: flex;
|
|
3173
|
-
align-items: center;
|
|
3174
|
-
justify-content: center;
|
|
3165
|
+
const Tick = styled.div `
|
|
3166
|
+
white-space: nowrap;
|
|
3167
|
+
width: 0;
|
|
3168
|
+
height: 0;
|
|
3169
|
+
position: absolute;
|
|
3170
|
+
top: 50%;
|
|
3171
|
+
transform: translateY(-50%);
|
|
3172
|
+
display: flex;
|
|
3173
|
+
align-items: center;
|
|
3174
|
+
justify-content: center;
|
|
3175
3175
|
`;
|
|
3176
3176
|
|
|
3177
3177
|
const hundred = 100;
|
|
@@ -3270,29 +3270,29 @@ const bubbleChartClassNames = {
|
|
|
3270
3270
|
bubbleChartTooltipFlex: "bubbleChartTooltipFlex",
|
|
3271
3271
|
bubbleChartTip: "bubbleChartTip",
|
|
3272
3272
|
};
|
|
3273
|
-
const SvgWrapper = styled(Wrapper) `
|
|
3274
|
-
.${bubbleChartClassNames.bubbleChartYAxis},
|
|
3275
|
-
.${bubbleChartClassNames.bubbleChartXAxis},
|
|
3276
|
-
.${bubbleChartClassNames.bubbleChartGridGlobal} {
|
|
3277
|
-
shape-rendering: crispEdges;
|
|
3278
|
-
}
|
|
3279
|
-
|
|
3280
|
-
.${bubbleChartClassNames.bubbleChartGridLineX},
|
|
3281
|
-
.${bubbleChartClassNames.bubbleChartGridLineY} {
|
|
3282
|
-
stroke: rgba(149, 149, 149, 0.24);
|
|
3283
|
-
}
|
|
3284
|
-
|
|
3285
|
-
.${bubbleChartClassNames.bubbleChartYScaleLabel} {
|
|
3286
|
-
font-size: 10px;
|
|
3287
|
-
}
|
|
3273
|
+
const SvgWrapper = styled(Wrapper) `
|
|
3274
|
+
.${bubbleChartClassNames.bubbleChartYAxis},
|
|
3275
|
+
.${bubbleChartClassNames.bubbleChartXAxis},
|
|
3276
|
+
.${bubbleChartClassNames.bubbleChartGridGlobal} {
|
|
3277
|
+
shape-rendering: crispEdges;
|
|
3278
|
+
}
|
|
3279
|
+
|
|
3280
|
+
.${bubbleChartClassNames.bubbleChartGridLineX},
|
|
3281
|
+
.${bubbleChartClassNames.bubbleChartGridLineY} {
|
|
3282
|
+
stroke: rgba(149, 149, 149, 0.24);
|
|
3283
|
+
}
|
|
3284
|
+
|
|
3285
|
+
.${bubbleChartClassNames.bubbleChartYScaleLabel} {
|
|
3286
|
+
font-size: 10px;
|
|
3287
|
+
}
|
|
3288
3288
|
`;
|
|
3289
|
-
const TooltipStyles = createGlobalStyle `
|
|
3290
|
-
.${bubbleChartClassNames.bubbleChartTooltipContainer} {
|
|
3291
|
-
position: absolute;
|
|
3292
|
-
transition: opacity 150ms cubic-bezier(0.2, 1, 0.6, 1);
|
|
3293
|
-
pointer-events: none;
|
|
3294
|
-
z-index: 1;
|
|
3295
|
-
}
|
|
3289
|
+
const TooltipStyles = createGlobalStyle `
|
|
3290
|
+
.${bubbleChartClassNames.bubbleChartTooltipContainer} {
|
|
3291
|
+
position: absolute;
|
|
3292
|
+
transition: opacity 150ms cubic-bezier(0.2, 1, 0.6, 1);
|
|
3293
|
+
pointer-events: none;
|
|
3294
|
+
z-index: 1;
|
|
3295
|
+
}
|
|
3296
3296
|
`;
|
|
3297
3297
|
|
|
3298
3298
|
const drawGrid = ({ svg, yScale, xScale, yTicksCount, drawGridX, drawGridY, }) => {
|
|
@@ -3329,14 +3329,14 @@ const drawGrid = ({ svg, yScale, xScale, yTicksCount, drawGridX, drawGridY, }) =
|
|
|
3329
3329
|
}
|
|
3330
3330
|
};
|
|
3331
3331
|
|
|
3332
|
-
const Tooltip = styled.div `
|
|
3333
|
-
width: 0;
|
|
3334
|
-
height: 0;
|
|
3335
|
-
display: flex;
|
|
3336
|
-
align-items: flex-end;
|
|
3337
|
-
justify-content: center;
|
|
3338
|
-
font-size: 12px;
|
|
3339
|
-
white-space: nowrap;
|
|
3332
|
+
const Tooltip = styled.div `
|
|
3333
|
+
width: 0;
|
|
3334
|
+
height: 0;
|
|
3335
|
+
display: flex;
|
|
3336
|
+
align-items: flex-end;
|
|
3337
|
+
justify-content: center;
|
|
3338
|
+
font-size: 12px;
|
|
3339
|
+
white-space: nowrap;
|
|
3340
3340
|
`;
|
|
3341
3341
|
|
|
3342
3342
|
const drawTooltip = ({ bubbles, tooltipRoot, tooltipClassName, renderTooltip, }) => {
|