@evergis/charts 4.0.5 → 4.0.7
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, }) => {
|
|
@@ -1261,53 +1261,53 @@ const calendarChartClassNames = {
|
|
|
1261
1261
|
...legendClassNames,
|
|
1262
1262
|
};
|
|
1263
1263
|
const headerHeight = "20px";
|
|
1264
|
-
const SvgWrapper$3 = styled(Wrapper) `
|
|
1265
|
-
.${calendarChartClassNames.calendarYear} {
|
|
1266
|
-
display: flex;
|
|
1267
|
-
margin-bottom: 16px;
|
|
1268
|
-
}
|
|
1269
|
-
|
|
1270
|
-
.${calendarChartClassNames.calendarYearTitle} {
|
|
1271
|
-
display: inline-flex;
|
|
1272
|
-
align-items: flex-end;
|
|
1273
|
-
height: ${headerHeight};
|
|
1274
|
-
margin-bottom: 4px;
|
|
1275
|
-
font-weight: bold;
|
|
1276
|
-
}
|
|
1277
|
-
|
|
1278
|
-
.${calendarChartClassNames.calendarHeader} {
|
|
1279
|
-
height: ${headerHeight};
|
|
1280
|
-
margin-bottom: 4px;
|
|
1281
|
-
position: relative;
|
|
1282
|
-
display: flex;
|
|
1283
|
-
}
|
|
1284
|
-
|
|
1285
|
-
.${calendarChartClassNames.calendarMonth} {
|
|
1286
|
-
font-size: 14px;
|
|
1287
|
-
bottom: 0;
|
|
1288
|
-
position: absolute;
|
|
1289
|
-
}
|
|
1290
|
-
|
|
1291
|
-
.${calendarChartClassNames.calendarAxis} {
|
|
1292
|
-
display: flex;
|
|
1293
|
-
flex-direction: column;
|
|
1294
|
-
margin-right: 10px;
|
|
1295
|
-
}
|
|
1296
|
-
|
|
1297
|
-
.${calendarChartClassNames.calendarWeekDay} {
|
|
1298
|
-
font-size: 12px;
|
|
1299
|
-
display: inline-flex;
|
|
1300
|
-
align-items: center;
|
|
1301
|
-
justify-content: flex-end;
|
|
1302
|
-
}
|
|
1303
|
-
|
|
1304
|
-
.${calendarChartClassNames.calendarDays} {
|
|
1305
|
-
position: relative;
|
|
1306
|
-
}
|
|
1307
|
-
|
|
1308
|
-
.${calendarChartClassNames.calendarDay} {
|
|
1309
|
-
position: absolute;
|
|
1310
|
-
}
|
|
1264
|
+
const SvgWrapper$3 = styled(Wrapper) `
|
|
1265
|
+
.${calendarChartClassNames.calendarYear} {
|
|
1266
|
+
display: flex;
|
|
1267
|
+
margin-bottom: 16px;
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1270
|
+
.${calendarChartClassNames.calendarYearTitle} {
|
|
1271
|
+
display: inline-flex;
|
|
1272
|
+
align-items: flex-end;
|
|
1273
|
+
height: ${headerHeight};
|
|
1274
|
+
margin-bottom: 4px;
|
|
1275
|
+
font-weight: bold;
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1278
|
+
.${calendarChartClassNames.calendarHeader} {
|
|
1279
|
+
height: ${headerHeight};
|
|
1280
|
+
margin-bottom: 4px;
|
|
1281
|
+
position: relative;
|
|
1282
|
+
display: flex;
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
.${calendarChartClassNames.calendarMonth} {
|
|
1286
|
+
font-size: 14px;
|
|
1287
|
+
bottom: 0;
|
|
1288
|
+
position: absolute;
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
.${calendarChartClassNames.calendarAxis} {
|
|
1292
|
+
display: flex;
|
|
1293
|
+
flex-direction: column;
|
|
1294
|
+
margin-right: 10px;
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1297
|
+
.${calendarChartClassNames.calendarWeekDay} {
|
|
1298
|
+
font-size: 12px;
|
|
1299
|
+
display: inline-flex;
|
|
1300
|
+
align-items: center;
|
|
1301
|
+
justify-content: flex-end;
|
|
1302
|
+
}
|
|
1303
|
+
|
|
1304
|
+
.${calendarChartClassNames.calendarDays} {
|
|
1305
|
+
position: relative;
|
|
1306
|
+
}
|
|
1307
|
+
|
|
1308
|
+
.${calendarChartClassNames.calendarDay} {
|
|
1309
|
+
position: absolute;
|
|
1310
|
+
}
|
|
1311
1311
|
`;
|
|
1312
1312
|
|
|
1313
1313
|
const draw$3 = (node, props) => {
|
|
@@ -1534,67 +1534,67 @@ const lineChartClassNames = {
|
|
|
1534
1534
|
lineChartMouseLabelContainer: "lineChartMouseLabelContainer",
|
|
1535
1535
|
lineChartMouseLabel: "lineChartMouseLabel",
|
|
1536
1536
|
};
|
|
1537
|
-
const SvgWrapper$2 = styled(Wrapper) `
|
|
1538
|
-
.${lineChartClassNames.lineChartYScaleGlobal},
|
|
1539
|
-
.${lineChartClassNames.lineChartXScaleGlobal},
|
|
1540
|
-
.${lineChartClassNames.lineChartGridGlobal} {
|
|
1541
|
-
shape-rendering: crispEdges;
|
|
1542
|
-
}
|
|
1543
|
-
|
|
1544
|
-
.${lineChartClassNames.lineChartLinesGlobal} {
|
|
1545
|
-
fill: none;
|
|
1546
|
-
stroke: steelblue;
|
|
1547
|
-
stroke-width: 1.5px;
|
|
1548
|
-
stroke-linejoin: round;
|
|
1549
|
-
stroke-linecap: round;
|
|
1550
|
-
}
|
|
1551
|
-
|
|
1552
|
-
.${lineChartClassNames.lineChartArea} {
|
|
1553
|
-
fill-opacity: 0.24;
|
|
1554
|
-
}
|
|
1555
|
-
|
|
1556
|
-
.${lineChartClassNames.lineChartGridLineX},
|
|
1557
|
-
.${lineChartClassNames.lineChartGridLineY},
|
|
1558
|
-
.${lineChartClassNames.lineChartMouseLine} {
|
|
1559
|
-
stroke: rgba(149, 149, 149, 0.24);
|
|
1560
|
-
}
|
|
1561
|
-
|
|
1562
|
-
.${lineChartClassNames.lineChartMouseLine},
|
|
1563
|
-
.${lineChartClassNames.lineChartMouseCircle} {
|
|
1564
|
-
transition: opacity linear 200ms;
|
|
1565
|
-
pointer-events: none;
|
|
1566
|
-
stroke-width: 1px;
|
|
1567
|
-
}
|
|
1568
|
-
|
|
1569
|
-
.${lineChartClassNames.lineChartDot} {
|
|
1570
|
-
stroke: #fff;
|
|
1571
|
-
stroke-width: 2px;
|
|
1572
|
-
}
|
|
1573
|
-
|
|
1574
|
-
.${lineChartClassNames.lineChartMouseLine} {
|
|
1575
|
-
shape-rendering: crispEdges;
|
|
1576
|
-
}
|
|
1577
|
-
|
|
1578
|
-
.${lineChartClassNames.lineChartMouseRect} {
|
|
1579
|
-
fill: none;
|
|
1580
|
-
pointer-events: all;
|
|
1581
|
-
}
|
|
1537
|
+
const SvgWrapper$2 = styled(Wrapper) `
|
|
1538
|
+
.${lineChartClassNames.lineChartYScaleGlobal},
|
|
1539
|
+
.${lineChartClassNames.lineChartXScaleGlobal},
|
|
1540
|
+
.${lineChartClassNames.lineChartGridGlobal} {
|
|
1541
|
+
shape-rendering: crispEdges;
|
|
1542
|
+
}
|
|
1543
|
+
|
|
1544
|
+
.${lineChartClassNames.lineChartLinesGlobal} {
|
|
1545
|
+
fill: none;
|
|
1546
|
+
stroke: steelblue;
|
|
1547
|
+
stroke-width: 1.5px;
|
|
1548
|
+
stroke-linejoin: round;
|
|
1549
|
+
stroke-linecap: round;
|
|
1550
|
+
}
|
|
1551
|
+
|
|
1552
|
+
.${lineChartClassNames.lineChartArea} {
|
|
1553
|
+
fill-opacity: 0.24;
|
|
1554
|
+
}
|
|
1555
|
+
|
|
1556
|
+
.${lineChartClassNames.lineChartGridLineX},
|
|
1557
|
+
.${lineChartClassNames.lineChartGridLineY},
|
|
1558
|
+
.${lineChartClassNames.lineChartMouseLine} {
|
|
1559
|
+
stroke: rgba(149, 149, 149, 0.24);
|
|
1560
|
+
}
|
|
1561
|
+
|
|
1562
|
+
.${lineChartClassNames.lineChartMouseLine},
|
|
1563
|
+
.${lineChartClassNames.lineChartMouseCircle} {
|
|
1564
|
+
transition: opacity linear 200ms;
|
|
1565
|
+
pointer-events: none;
|
|
1566
|
+
stroke-width: 1px;
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
.${lineChartClassNames.lineChartDot} {
|
|
1570
|
+
stroke: #fff;
|
|
1571
|
+
stroke-width: 2px;
|
|
1572
|
+
}
|
|
1573
|
+
|
|
1574
|
+
.${lineChartClassNames.lineChartMouseLine} {
|
|
1575
|
+
shape-rendering: crispEdges;
|
|
1576
|
+
}
|
|
1577
|
+
|
|
1578
|
+
.${lineChartClassNames.lineChartMouseRect} {
|
|
1579
|
+
fill: none;
|
|
1580
|
+
pointer-events: all;
|
|
1581
|
+
}
|
|
1582
1582
|
`;
|
|
1583
|
-
const TooltipStyles$2 = createGlobalStyle `
|
|
1584
|
-
.${lineChartClassNames.lineChartMouseLabel} {
|
|
1585
|
-
transition: opacity linear 200ms;
|
|
1586
|
-
z-index: 100;
|
|
1587
|
-
|
|
1588
|
-
.${lineChartClassNames.lineChartLabelFlex} {
|
|
1589
|
-
justify-content: flex-start;
|
|
1590
|
-
align-items: center;
|
|
1591
|
-
pointer-events: none;
|
|
1592
|
-
}
|
|
1593
|
-
|
|
1594
|
-
.${lineChartClassNames.lineChartLabel} {
|
|
1595
|
-
margin: 0 0 0 10px;
|
|
1596
|
-
}
|
|
1597
|
-
}
|
|
1583
|
+
const TooltipStyles$2 = createGlobalStyle `
|
|
1584
|
+
.${lineChartClassNames.lineChartMouseLabel} {
|
|
1585
|
+
transition: opacity linear 200ms;
|
|
1586
|
+
z-index: 100;
|
|
1587
|
+
|
|
1588
|
+
.${lineChartClassNames.lineChartLabelFlex} {
|
|
1589
|
+
justify-content: flex-start;
|
|
1590
|
+
align-items: center;
|
|
1591
|
+
pointer-events: none;
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1594
|
+
.${lineChartClassNames.lineChartLabel} {
|
|
1595
|
+
margin: 0 0 0 10px;
|
|
1596
|
+
}
|
|
1597
|
+
}
|
|
1598
1598
|
`;
|
|
1599
1599
|
|
|
1600
1600
|
const drawGrid$2 = ({ svg, yScale, xScale, yTicksCount, lastIndex, drawGridX, drawGridY, }) => {
|
|
@@ -1630,17 +1630,17 @@ const drawGrid$2 = ({ svg, yScale, xScale, yTicksCount, lastIndex, drawGridX, dr
|
|
|
1630
1630
|
}
|
|
1631
1631
|
};
|
|
1632
1632
|
|
|
1633
|
-
const LabelContainer = styled.div `
|
|
1634
|
-
width: 0;
|
|
1635
|
-
height: 0;
|
|
1636
|
-
display: flex;
|
|
1637
|
-
align-items: flex-end;
|
|
1638
|
-
justify-content: center;
|
|
1639
|
-
font-size: 12px;
|
|
1640
|
-
white-space: nowrap;
|
|
1633
|
+
const LabelContainer = styled.div `
|
|
1634
|
+
width: 0;
|
|
1635
|
+
height: 0;
|
|
1636
|
+
display: flex;
|
|
1637
|
+
align-items: flex-end;
|
|
1638
|
+
justify-content: center;
|
|
1639
|
+
font-size: 12px;
|
|
1640
|
+
white-space: nowrap;
|
|
1641
1641
|
`;
|
|
1642
|
-
const Label = styled.div `
|
|
1643
|
-
margin-bottom: 4px;
|
|
1642
|
+
const Label = styled.div `
|
|
1643
|
+
margin-bottom: 4px;
|
|
1644
1644
|
`;
|
|
1645
1645
|
|
|
1646
1646
|
const labelClassName = "d3-chart-label";
|
|
@@ -2251,66 +2251,66 @@ const barChartClassNames = {
|
|
|
2251
2251
|
...labelClassnames,
|
|
2252
2252
|
...barChartLinesClassNames,
|
|
2253
2253
|
};
|
|
2254
|
-
const SvgWrapper$1 = styled(Wrapper) `
|
|
2255
|
-
display: ${({ selectable }) => selectable && "inline-block"};
|
|
2256
|
-
user-select: ${({ selectable }) => selectable && "none"};
|
|
2257
|
-
width: ${({ selectable }) => selectable && "auto"};
|
|
2258
|
-
|
|
2259
|
-
line {
|
|
2260
|
-
stroke-width: 1px;
|
|
2261
|
-
shape-rendering: crispEdges;
|
|
2262
|
-
}
|
|
2263
|
-
|
|
2264
|
-
.${barChartClassNames.barChartGridLineX},
|
|
2265
|
-
.${barChartClassNames.barChartGridLineY} {
|
|
2266
|
-
stroke: rgba(48, 69, 79, 0.06);
|
|
2267
|
-
}
|
|
2268
|
-
|
|
2269
|
-
.${barChartClassNames.barChartMouseRect} {
|
|
2270
|
-
}
|
|
2271
|
-
|
|
2272
|
-
.${barChartClassNames.barChartMouseRect} {
|
|
2273
|
-
fill: none;
|
|
2274
|
-
pointer-events: all;
|
|
2275
|
-
}
|
|
2276
|
-
|
|
2277
|
-
.${barChartClassNames.barChartLinesGlobal} {
|
|
2278
|
-
stroke-width: 1.5px;
|
|
2279
|
-
stroke-linejoin: round;
|
|
2280
|
-
stroke-linecap: round;
|
|
2281
|
-
}
|
|
2282
|
-
|
|
2283
|
-
.${barChartClassNames.barChartLine} {
|
|
2284
|
-
shape-rendering: auto;
|
|
2285
|
-
}
|
|
2286
|
-
|
|
2287
|
-
.${barChartClassNames.barChartArea} {
|
|
2288
|
-
fill-opacity: 0.24;
|
|
2289
|
-
}
|
|
2290
|
-
|
|
2291
|
-
.${barChartClassNames.barChartSelection} {
|
|
2292
|
-
position: absolute;
|
|
2293
|
-
top: 0;
|
|
2294
|
-
width: 0;
|
|
2295
|
-
background: rgba(0, 170, 255, 0.06);
|
|
2296
|
-
box-shadow: 1px 0 0 #00AAFF, -1px 0 0 #00AAFF;
|
|
2297
|
-
pointer-events: none;
|
|
2298
|
-
}
|
|
2254
|
+
const SvgWrapper$1 = styled(Wrapper) `
|
|
2255
|
+
display: ${({ selectable }) => selectable && "inline-block"};
|
|
2256
|
+
user-select: ${({ selectable }) => selectable && "none"};
|
|
2257
|
+
width: ${({ selectable }) => selectable && "auto"};
|
|
2258
|
+
|
|
2259
|
+
line {
|
|
2260
|
+
stroke-width: 1px;
|
|
2261
|
+
shape-rendering: crispEdges;
|
|
2262
|
+
}
|
|
2263
|
+
|
|
2264
|
+
.${barChartClassNames.barChartGridLineX},
|
|
2265
|
+
.${barChartClassNames.barChartGridLineY} {
|
|
2266
|
+
stroke: rgba(48, 69, 79, 0.06);
|
|
2267
|
+
}
|
|
2268
|
+
|
|
2269
|
+
.${barChartClassNames.barChartMouseRect} {
|
|
2270
|
+
}
|
|
2271
|
+
|
|
2272
|
+
.${barChartClassNames.barChartMouseRect} {
|
|
2273
|
+
fill: none;
|
|
2274
|
+
pointer-events: all;
|
|
2275
|
+
}
|
|
2276
|
+
|
|
2277
|
+
.${barChartClassNames.barChartLinesGlobal} {
|
|
2278
|
+
stroke-width: 1.5px;
|
|
2279
|
+
stroke-linejoin: round;
|
|
2280
|
+
stroke-linecap: round;
|
|
2281
|
+
}
|
|
2282
|
+
|
|
2283
|
+
.${barChartClassNames.barChartLine} {
|
|
2284
|
+
shape-rendering: auto;
|
|
2285
|
+
}
|
|
2286
|
+
|
|
2287
|
+
.${barChartClassNames.barChartArea} {
|
|
2288
|
+
fill-opacity: 0.24;
|
|
2289
|
+
}
|
|
2290
|
+
|
|
2291
|
+
.${barChartClassNames.barChartSelection} {
|
|
2292
|
+
position: absolute;
|
|
2293
|
+
top: 0;
|
|
2294
|
+
width: 0;
|
|
2295
|
+
background: rgba(0, 170, 255, 0.06);
|
|
2296
|
+
box-shadow: 1px 0 0 #00AAFF, -1px 0 0 #00AAFF;
|
|
2297
|
+
pointer-events: none;
|
|
2298
|
+
}
|
|
2299
2299
|
`;
|
|
2300
|
-
const TooltipStyles$1 = createGlobalStyle `
|
|
2301
|
-
.${barChartClassNames.barChartMouseTooltip} {
|
|
2302
|
-
z-index: 100;
|
|
2303
|
-
transition: all linear 144ms;
|
|
2304
|
-
|
|
2305
|
-
.${barChartClassNames.barChartTooltipItem} {
|
|
2306
|
-
padding: 0.125rem;
|
|
2307
|
-
margin-bottom: 4px;
|
|
2308
|
-
|
|
2309
|
-
:last-of-type {
|
|
2310
|
-
margin-bottom: 0;
|
|
2311
|
-
}
|
|
2312
|
-
}
|
|
2313
|
-
}
|
|
2300
|
+
const TooltipStyles$1 = createGlobalStyle `
|
|
2301
|
+
.${barChartClassNames.barChartMouseTooltip} {
|
|
2302
|
+
z-index: 100;
|
|
2303
|
+
transition: all linear 144ms;
|
|
2304
|
+
|
|
2305
|
+
.${barChartClassNames.barChartTooltipItem} {
|
|
2306
|
+
padding: 0.125rem;
|
|
2307
|
+
margin-bottom: 4px;
|
|
2308
|
+
|
|
2309
|
+
:last-of-type {
|
|
2310
|
+
margin-bottom: 0;
|
|
2311
|
+
}
|
|
2312
|
+
}
|
|
2313
|
+
}
|
|
2314
2314
|
`;
|
|
2315
2315
|
|
|
2316
2316
|
const useSelection = (node, props) => {
|
|
@@ -3150,45 +3150,45 @@ const horizontalBarChartClassNames = {
|
|
|
3150
3150
|
horizontalBarChartTooltipName: "horizontalBarChartTooltipName",
|
|
3151
3151
|
horizontalBarChartTooltipValue: "horizontalBarChartTooltipValue",
|
|
3152
3152
|
};
|
|
3153
|
-
const Table = styled.table `
|
|
3154
|
-
width: 100%;
|
|
3153
|
+
const Table = styled.table `
|
|
3154
|
+
width: 100%;
|
|
3155
3155
|
`;
|
|
3156
|
-
const LabelCell = styled.div `
|
|
3157
|
-
text-align: right;
|
|
3156
|
+
const LabelCell = styled.div `
|
|
3157
|
+
text-align: right;
|
|
3158
3158
|
`;
|
|
3159
|
-
const BarFlex = styled.div `
|
|
3160
|
-
width: 100%;
|
|
3161
|
-
display: flex;
|
|
3162
|
-
height: 1rem;
|
|
3159
|
+
const BarFlex = styled.div `
|
|
3160
|
+
width: 100%;
|
|
3161
|
+
display: flex;
|
|
3162
|
+
height: 1rem;
|
|
3163
3163
|
`;
|
|
3164
|
-
const BarsTd = styled.td `
|
|
3165
|
-
width: 100%;
|
|
3166
|
-
position: relative;
|
|
3167
|
-
vertical-align: middle;
|
|
3164
|
+
const BarsTd = styled.td `
|
|
3165
|
+
width: 100%;
|
|
3166
|
+
position: relative;
|
|
3167
|
+
vertical-align: middle;
|
|
3168
3168
|
`;
|
|
3169
|
-
const TooltipFlex = styled(TooltipFlex$1) `
|
|
3170
|
-
position: absolute;
|
|
3171
|
-
top: 0;
|
|
3172
|
-
left: 50%;
|
|
3173
|
-
transform: translate(-50%, -50%);
|
|
3174
|
-
will-change: left, top;
|
|
3169
|
+
const TooltipFlex = styled(TooltipFlex$1) `
|
|
3170
|
+
position: absolute;
|
|
3171
|
+
top: 0;
|
|
3172
|
+
left: 50%;
|
|
3173
|
+
transform: translate(-50%, -50%);
|
|
3174
|
+
will-change: left, top;
|
|
3175
3175
|
`;
|
|
3176
|
-
const StackSumContainer = styled.div `
|
|
3177
|
-
position: relative;
|
|
3176
|
+
const StackSumContainer = styled.div `
|
|
3177
|
+
position: relative;
|
|
3178
3178
|
`;
|
|
3179
|
-
const StackSum = styled.div `
|
|
3180
|
-
white-space: nowrap;
|
|
3181
|
-
position: absolute;
|
|
3182
|
-
top: 50%;
|
|
3183
|
-
left: 50%;
|
|
3184
|
-
transform: translate(0, -50%);
|
|
3179
|
+
const StackSum = styled.div `
|
|
3180
|
+
white-space: nowrap;
|
|
3181
|
+
position: absolute;
|
|
3182
|
+
top: 50%;
|
|
3183
|
+
left: 50%;
|
|
3184
|
+
transform: translate(0, -50%);
|
|
3185
3185
|
`;
|
|
3186
|
-
const StackWrapper = styled.div `
|
|
3187
|
-
position: absolute;
|
|
3188
|
-
top: 0;
|
|
3189
|
-
display: flex;
|
|
3190
|
-
justify-content: flex-start;
|
|
3191
|
-
height: 100%;
|
|
3186
|
+
const StackWrapper = styled.div `
|
|
3187
|
+
position: absolute;
|
|
3188
|
+
top: 0;
|
|
3189
|
+
display: flex;
|
|
3190
|
+
justify-content: flex-start;
|
|
3191
|
+
height: 100%;
|
|
3192
3192
|
`;
|
|
3193
3193
|
|
|
3194
3194
|
const Tooltip$1 = ({ renderTooltip, bars, style, className, }) => {
|
|
@@ -3240,10 +3240,10 @@ const useStackWrapper = (stackedTooltip) => {
|
|
|
3240
3240
|
: ({ children }) => (jsx(Fragment$1, { children: children })), [stackedTooltip]);
|
|
3241
3241
|
};
|
|
3242
3242
|
|
|
3243
|
-
const BarStyled = styled.div `
|
|
3244
|
-
position: relative;
|
|
3245
|
-
display: inline-flex;
|
|
3246
|
-
height: 100%;
|
|
3243
|
+
const BarStyled = styled.div `
|
|
3244
|
+
position: relative;
|
|
3245
|
+
display: inline-flex;
|
|
3246
|
+
height: 100%;
|
|
3247
3247
|
`;
|
|
3248
3248
|
|
|
3249
3249
|
const Bar = ({ withTooltip, bar, formatNativeTitle, tooltipBind, mouseMove, mouseLeave, pointerEventsNone, isFirstChild, isLastChild, isOnlyChild, }) => {
|
|
@@ -3260,23 +3260,23 @@ const Bar = ({ withTooltip, bar, formatNativeTitle, tooltipBind, mouseMove, mous
|
|
|
3260
3260
|
}, title: formatNativeTitle ? formatNativeTitle(bar) : "", onMouseOver: onMouseMove, onMouseMove: tooltipBind ? onMouseMove : void 0, onMouseOut: onMouseLeave }));
|
|
3261
3261
|
};
|
|
3262
3262
|
|
|
3263
|
-
const TickTd = styled.td `
|
|
3264
|
-
position: relative;
|
|
3263
|
+
const TickTd = styled.td `
|
|
3264
|
+
position: relative;
|
|
3265
3265
|
`;
|
|
3266
|
-
const Ticks = styled.div `
|
|
3267
|
-
position: relative;
|
|
3268
|
-
height: 1rem;
|
|
3266
|
+
const Ticks = styled.div `
|
|
3267
|
+
position: relative;
|
|
3268
|
+
height: 1rem;
|
|
3269
3269
|
`;
|
|
3270
|
-
const Tick = styled.div `
|
|
3271
|
-
white-space: nowrap;
|
|
3272
|
-
width: 0;
|
|
3273
|
-
height: 0;
|
|
3274
|
-
position: absolute;
|
|
3275
|
-
top: 50%;
|
|
3276
|
-
transform: translateY(-50%);
|
|
3277
|
-
display: flex;
|
|
3278
|
-
align-items: center;
|
|
3279
|
-
justify-content: center;
|
|
3270
|
+
const Tick = styled.div `
|
|
3271
|
+
white-space: nowrap;
|
|
3272
|
+
width: 0;
|
|
3273
|
+
height: 0;
|
|
3274
|
+
position: absolute;
|
|
3275
|
+
top: 50%;
|
|
3276
|
+
transform: translateY(-50%);
|
|
3277
|
+
display: flex;
|
|
3278
|
+
align-items: center;
|
|
3279
|
+
justify-content: center;
|
|
3280
3280
|
`;
|
|
3281
3281
|
|
|
3282
3282
|
const hundred = 100;
|
|
@@ -3375,29 +3375,29 @@ const bubbleChartClassNames = {
|
|
|
3375
3375
|
bubbleChartTooltipFlex: "bubbleChartTooltipFlex",
|
|
3376
3376
|
bubbleChartTip: "bubbleChartTip",
|
|
3377
3377
|
};
|
|
3378
|
-
const SvgWrapper = styled(Wrapper) `
|
|
3379
|
-
.${bubbleChartClassNames.bubbleChartYAxis},
|
|
3380
|
-
.${bubbleChartClassNames.bubbleChartXAxis},
|
|
3381
|
-
.${bubbleChartClassNames.bubbleChartGridGlobal} {
|
|
3382
|
-
shape-rendering: crispEdges;
|
|
3383
|
-
}
|
|
3384
|
-
|
|
3385
|
-
.${bubbleChartClassNames.bubbleChartGridLineX},
|
|
3386
|
-
.${bubbleChartClassNames.bubbleChartGridLineY} {
|
|
3387
|
-
stroke: rgba(149, 149, 149, 0.24);
|
|
3388
|
-
}
|
|
3389
|
-
|
|
3390
|
-
.${bubbleChartClassNames.bubbleChartYScaleLabel} {
|
|
3391
|
-
font-size: 10px;
|
|
3392
|
-
}
|
|
3378
|
+
const SvgWrapper = styled(Wrapper) `
|
|
3379
|
+
.${bubbleChartClassNames.bubbleChartYAxis},
|
|
3380
|
+
.${bubbleChartClassNames.bubbleChartXAxis},
|
|
3381
|
+
.${bubbleChartClassNames.bubbleChartGridGlobal} {
|
|
3382
|
+
shape-rendering: crispEdges;
|
|
3383
|
+
}
|
|
3384
|
+
|
|
3385
|
+
.${bubbleChartClassNames.bubbleChartGridLineX},
|
|
3386
|
+
.${bubbleChartClassNames.bubbleChartGridLineY} {
|
|
3387
|
+
stroke: rgba(149, 149, 149, 0.24);
|
|
3388
|
+
}
|
|
3389
|
+
|
|
3390
|
+
.${bubbleChartClassNames.bubbleChartYScaleLabel} {
|
|
3391
|
+
font-size: 10px;
|
|
3392
|
+
}
|
|
3393
3393
|
`;
|
|
3394
|
-
const TooltipStyles = createGlobalStyle `
|
|
3395
|
-
.${bubbleChartClassNames.bubbleChartTooltipContainer} {
|
|
3396
|
-
position: absolute;
|
|
3397
|
-
transition: opacity 150ms cubic-bezier(0.2, 1, 0.6, 1);
|
|
3398
|
-
pointer-events: none;
|
|
3399
|
-
z-index: 1;
|
|
3400
|
-
}
|
|
3394
|
+
const TooltipStyles = createGlobalStyle `
|
|
3395
|
+
.${bubbleChartClassNames.bubbleChartTooltipContainer} {
|
|
3396
|
+
position: absolute;
|
|
3397
|
+
transition: opacity 150ms cubic-bezier(0.2, 1, 0.6, 1);
|
|
3398
|
+
pointer-events: none;
|
|
3399
|
+
z-index: 1;
|
|
3400
|
+
}
|
|
3401
3401
|
`;
|
|
3402
3402
|
|
|
3403
3403
|
const drawGrid = ({ svg, yScale, xScale, yTicksCount, drawGridX, drawGridY, }) => {
|
|
@@ -3434,14 +3434,14 @@ const drawGrid = ({ svg, yScale, xScale, yTicksCount, drawGridX, drawGridY, }) =
|
|
|
3434
3434
|
}
|
|
3435
3435
|
};
|
|
3436
3436
|
|
|
3437
|
-
const Tooltip = styled.div `
|
|
3438
|
-
width: 0;
|
|
3439
|
-
height: 0;
|
|
3440
|
-
display: flex;
|
|
3441
|
-
align-items: flex-end;
|
|
3442
|
-
justify-content: center;
|
|
3443
|
-
font-size: 12px;
|
|
3444
|
-
white-space: nowrap;
|
|
3437
|
+
const Tooltip = styled.div `
|
|
3438
|
+
width: 0;
|
|
3439
|
+
height: 0;
|
|
3440
|
+
display: flex;
|
|
3441
|
+
align-items: flex-end;
|
|
3442
|
+
justify-content: center;
|
|
3443
|
+
font-size: 12px;
|
|
3444
|
+
white-space: nowrap;
|
|
3445
3445
|
`;
|
|
3446
3446
|
|
|
3447
3447
|
const drawTooltip = ({ bubbles, tooltipRoot, tooltipClassName, renderTooltip, }) => {
|