[data-name="ChartScatterAnimate"] circle {
opacity: 1;
transition: opacity 0.2s ease-in-out;
}
[data-name="ChartScatterAnimate"]:hover circle[cx="7.5"][cy="7.5"] {
animation: dotFadeIn 0.3s ease-in-out 0s both;
}
[data-name="ChartScatterAnimate"]:hover circle[cx="18.5"][cy="5.5"] {
animation: dotFadeIn 0.3s ease-in-out 0.15s both;
}
[data-name="ChartScatterAnimate"]:hover circle[cx="11.5"][cy="11.5"] {
animation: dotFadeIn 0.3s ease-in-out 0.3s both;
}
[data-name="ChartScatterAnimate"]:hover circle[cx="7.5"][cy="16.5"] {
animation: dotFadeIn 0.3s ease-in-out 0.45s both;
}
[data-name="ChartScatterAnimate"]:hover circle[cx="17.5"][cy="14.5"] {
animation: dotFadeIn 0.3s ease-in-out 0.6s both;
}
@keyframes dotFadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}
[data-name="ChartScatterAnimate"] path {
opacity: 1;
}