swimlane/ngx-charts

View on GitHub
projects/swimlane/ngx-charts/src/lib/pie-chart/pie-chart.component.scss

Summary

Maintainability
Test Coverage
.pie-label {
  font-size: 11px;

  &.animation {
    animation: 750ms ease-in fadeIn;

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }
  }
}

.pie-label-line {
  stroke-dasharray: 100%;

  &.animation {
    animation: 3s linear drawOut;
    transition: d 750ms;

    @keyframes drawOut {
      from {
        stroke-dashoffset: 100%;
      }
      to {
        stroke-dashoffset: 0;
      }
    }
  }
}