Header menu logo Plotly.NET

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:
    width : int
    height : int
    scale : float
    gChart : GenericChart

Returns: string
Modifiers: abstract

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

width : int
height : int
scale : float
gChart : GenericChart
Returns: string

this.RenderJPGAsync

Full Usage: this.RenderJPGAsync

Parameters:
    width : int
    height : int
    scale : float
    gChart : GenericChart

Returns: Task<string>
Modifiers: abstract

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

width : int
height : int
scale : float
gChart : GenericChart
Returns: Task<string>

this.RenderPNG

Full Usage: this.RenderPNG

Parameters:
    width : int
    height : int
    scale : float
    gChart : GenericChart

Returns: string
Modifiers: abstract

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

width : int
height : int
scale : float
gChart : GenericChart
Returns: string

this.RenderPNGAsync

Full Usage: this.RenderPNGAsync

Parameters:
    width : int
    height : int
    scale : float
    gChart : GenericChart

Returns: Task<string>
Modifiers: abstract

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

width : int
height : int
scale : float
gChart : GenericChart
Returns: Task<string>

this.RenderSVG

Full Usage: this.RenderSVG

Parameters:
    width : int
    height : int
    scale : float
    gChart : GenericChart

Returns: string
Modifiers: abstract

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

width : int
height : int
scale : float
gChart : GenericChart
Returns: string

this.RenderSVGAsync

Full Usage: this.RenderSVGAsync

Parameters:
    width : int
    height : int
    scale : float
    gChart : GenericChart

Returns: Task<string>
Modifiers: abstract

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

width : int
height : int
scale : float
gChart : GenericChart
Returns: Task<string>

this.SaveJPG

Full Usage: this.SaveJPG

Parameters:
    path : string
    width : int
    height : int
    scale : float
    gChart : GenericChart

Modifiers: abstract

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

path : string
width : int
height : int
scale : float
gChart : GenericChart

this.SaveJPGAsync

Full Usage: this.SaveJPGAsync

Parameters:
    path : string
    width : int
    height : int
    scale : float
    gChart : GenericChart

Returns: Task<unit>
Modifiers: abstract

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

path : string
width : int
height : int
scale : float
gChart : GenericChart
Returns: Task<unit>

this.SavePNG

Full Usage: this.SavePNG

Parameters:
    path : string
    width : int
    height : int
    scale : float
    gChart : GenericChart

Modifiers: abstract

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

path : string
width : int
height : int
scale : float
gChart : GenericChart

this.SavePNGAsync

Full Usage: this.SavePNGAsync

Parameters:
    path : string
    width : int
    height : int
    scale : float
    gChart : GenericChart

Returns: Task<unit>
Modifiers: abstract

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

path : string
width : int
height : int
scale : float
gChart : GenericChart
Returns: Task<unit>

this.SaveSVG

Full Usage: this.SaveSVG

Parameters:
    path : string
    width : int
    height : int
    scale : float
    gChart : GenericChart

Modifiers: abstract

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

path : string
width : int
height : int
scale : float
gChart : GenericChart

this.SaveSVGAsync

Full Usage: this.SaveSVGAsync

Parameters:
    path : string
    width : int
    height : int
    scale : float
    gChart : GenericChart

Returns: Task<unit>
Modifiers: abstract

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

path : string
width : int
height : int
scale : float
gChart : GenericChart
Returns: Task<unit>

Type something to start searching.