We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77ccf01 commit ea8576dCopy full SHA for ea8576d
2 files changed
PSGraph.Common/Interface/IDsmView.cs
@@ -5,7 +5,10 @@ namespace PSGraph.DesignStructureMatrix
5
public interface IDsmView
6
{
7
public abstract SvgDocument ToSvg();
8
+ public abstract string ToSvgString();
9
public abstract void ExportText(string Path);
10
+ public abstract string ExportText();
11
+ public abstract string ToVegaSpec(VegaExportTypes exportType, string modulePath);
12
public string ExportGraphViz();
13
}
14
PSGraph.Common/Model/DSMExportTypes.cs
@@ -2,7 +2,10 @@
2
3
public enum DSMExportTypes
4
- SVG,
- TEXT
+ //TODO: replaced with Vega as visual was really bad. perhaps need to rewrite it
+ //SVG,
+ TEXT,
+ VEGA_JSON,
+ VEGA_HTML
0 commit comments