IGenericChartRenderer Type

Interface for Engines that render Plotly.NET's GenericChart to static images.

Instance members

Instance member Description

this.RenderJPG

Full Usage: this.RenderJPG

Parameters:
Returns: string
Modifiers: abstract

Function that returns a base64 encoded string representing the input chart as JPG file with the given width and height

arg0 : int
arg1 : int
arg2 : GenericChart
Returns: string

this.RenderJPGAsync

Full Usage: this.RenderJPGAsync

Parameters:
Returns: Task<string>
Modifiers: abstract

Async function that returns a base64 encoded string representing the input chart as JPG file with the given width and height

arg0 : int
arg1 : int
arg2 : GenericChart
Returns: Task<string>

this.RenderPNG

Full Usage: this.RenderPNG

Parameters:
Returns: string
Modifiers: abstract

Function that returns a base64 encoded string representing the input chart as PNG file with the given width and height

arg0 : int
arg1 : int
arg2 : GenericChart
Returns: string

this.RenderPNGAsync

Full Usage: this.RenderPNGAsync

Parameters:
Returns: Task<string>
Modifiers: abstract

Async function that returns a base64 encoded string representing the input chart as PNG file with the given width and height

arg0 : int
arg1 : int
arg2 : GenericChart
Returns: Task<string>

this.RenderSVG

Full Usage: this.RenderSVG

Parameters:
Returns: string
Modifiers: abstract

Function that returns string representing the input chart as SVG file with the given width and height

arg0 : int
arg1 : int
arg2 : GenericChart
Returns: string

this.RenderSVGAsync

Full Usage: this.RenderSVGAsync

Parameters:
Returns: Task<string>
Modifiers: abstract

Async function that returns a string representing the input chart as SVG file with the given width and height

arg0 : int
arg1 : int
arg2 : GenericChart
Returns: Task<string>

this.SaveJPG

Full Usage: this.SaveJPG

Parameters:
Modifiers: abstract

Function that saves the input chart as JPG file with the given width and height at the given path

arg0 : string
arg1 : int
arg2 : int
arg3 : GenericChart

this.SaveJPGAsync

Full Usage: this.SaveJPGAsync

Parameters:
Returns: Task<unit>
Modifiers: abstract

Async function that saves the input chart as JPG file with the given width and height at the given path

arg0 : string
arg1 : int
arg2 : int
arg3 : GenericChart
Returns: Task<unit>

this.SavePNG

Full Usage: this.SavePNG

Parameters:
Modifiers: abstract

Function that saves the input chart as PNG file with the given width and height at the given path

arg0 : string
arg1 : int
arg2 : int
arg3 : GenericChart

this.SavePNGAsync

Full Usage: this.SavePNGAsync

Parameters:
Returns: Task<unit>
Modifiers: abstract

Async function that saves the input chart as PNG file with the given width and height at the given path

arg0 : string
arg1 : int
arg2 : int
arg3 : GenericChart
Returns: Task<unit>

this.SaveSVG

Full Usage: this.SaveSVG

Parameters:
Modifiers: abstract

Function that saves the input chart as SVG file with the given width and height at the given path

arg0 : string
arg1 : int
arg2 : int
arg3 : GenericChart

this.SaveSVGAsync

Full Usage: this.SaveSVGAsync

Parameters:
Returns: Task<unit>
Modifiers: abstract

Async function that saves the input chart as SVG file with the given width and height at the given path

arg0 : string
arg1 : int
arg2 : int
arg3 : GenericChart
Returns: Task<unit>