/// <summary> /// Renders the PlotView to xaml. /// </summary> /// <returns>The xaml.</returns> public string ToXaml() { return(XamlExporter.ExportToString(this.ActualModel, this.ActualWidth, this.ActualHeight, this.Background.ToOxyColor())); }
/// <summary> /// Saves the PlotView as xaml. /// </summary> /// <param name="fileName">Name of the file.</param> public void SaveXaml(string fileName) { XamlExporter.Export(this.ActualModel, fileName, this.ActualWidth, this.ActualHeight, this.Background.ToOxyColor()); }
/// <summary> /// Renders the PlotView to xaml. /// </summary> /// <returns>The xaml.</returns> public string ToXaml() { return(XamlExporter.ExportToString(this.ActualModel, this.ActualWidth, this.ActualHeight)); }
/// <summary> /// Saves the PlotView as xaml. /// </summary> /// <param name="fileName">Name of the file.</param> public void SaveXaml(string fileName) { XamlExporter.Export(this.ActualModel, fileName, this.ActualWidth, this.ActualHeight); }
/// <summary> /// Renders the PlotView to xaml. /// </summary> /// <returns>The xaml.</returns> public string ToXaml() { var background = this.ActualModel.Background.IsVisible() ? this.ActualModel.Background : this.Background.ToOxyColor(); return(XamlExporter.ExportToString(this.ActualModel, this.ActualWidth, this.ActualHeight, background)); }
/// <summary> /// Saves the PlotView as xaml. /// </summary> /// <param name="fileName">Name of the file.</param> public void SaveXaml(string fileName) { var background = this.ActualModel.Background.IsVisible() ? this.ActualModel.Background : this.Background.ToOxyColor(); XamlExporter.Export(this.ActualModel, fileName, this.ActualWidth, this.ActualHeight, background); }