Skip to content

Instantly share code, notes, and snippets.

@kernelex
kernelex / svg-ellipsis.directive.ts
Created April 21, 2020 14:37 — forked from boneskull/svg-ellipsis.directive.ts
Angular directive to simulate "text-overflow: ellipsis" on an SVG text node
/**
* @see https://stackoverflow.com/questions/15975440/add-ellipses-to-overflowing-text-in-svg
* @example
* <!-- truncate at 200px -->
* <svg><svg:text ellipsis [text]="text to truncate" [width]="200"></svg:text></svg>
*/
import {
Directive,
ElementRef,