コード例 #1
0
ファイル: GridView.cs プロジェクト: horker/oxyplotcli2
        public void SaveAsSvg(string path, int width = 800, int height = 600, bool isDocument = true)
        {
            var svgString = GridViewExporter.ExportToSvgString(this, width, height, isDocument);

            using (var f = new StreamWriter(path))
            {
                f.Write(svgString);
            }
        }
コード例 #2
0
        public static void ExportToSvg(GridView gridView, string path, int width, int height, bool isDocument)
        {
            var svgString = GridViewExporter.ExportToSvgString(gridView, width, height, isDocument);

            using (var f = new StreamWriter(path))
            {
                f.Write(svgString);
            }
        }