/// <summary> /// Renders the PlotView to xaml. /// </summary> /// <returns>The xaml.</returns> public string ToXaml() { return(XamlExporter.ExportToString(this.ActualModel, this.ActualWidth, this.ActualHeight)); }
/// <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> /// 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)); }