feat(markers): add option to control orientation of markers

This commit is contained in:
Christopher Möller
2021-10-15 13:07:02 +02:00
parent 1b73c8fff5
commit b08809d810
6 changed files with 50 additions and 35 deletions
+2 -1
View File
@@ -62,7 +62,8 @@ export interface EdgeMarker {
color?: string;
width?: number;
height?: number;
units?: 'userSpaceOnUse' | 'strokeWidth';
units?: string;
orient?: string;
strokeWidth?: number;
}