Namespace: XPlot.GoogleCharts
Assembly: XPlot.GoogleCharts.dll
Base Type:
obj
Record Field | Description |
Full Usage:
dataTable
Modifiers: mutable |
|
Full Usage:
options
Modifiers: mutable |
|
Full Usage:
type
Modifiers: mutable |
|
Constructor | Description |
|
|
Instance member | Description |
Full Usage:
this.ApiKey
|
The Google Maps API Key, used with Goe and Map charts. |
Full Usage:
this.GetHtml()
Returns: string
|
Returns the chart's full HTML source.
|
Full Usage:
this.GetInlineHtml()
Returns: string
|
Inline markup that can be embedded in a HTML document (provided that it has a reference to Google APIs and loads the required Google Charts packages).
|
Full Usage:
this.GetInlineJS()
Returns: string
|
The chart's inline JavaScript code.
|
Full Usage:
this.Height
|
The height of the chart container element. |
Full Usage:
this.Id
|
The chart's container div id. |
Full Usage:
this.Show()
|
Displays a chart in the default browser. |
Full Usage:
this.Width
|
The width of the chart container element. |
Full Usage:
this.WithApiKey(newApiKey)
Parameters:
string
|
Sets the Google Maps API Key, used by Goe and Map charts.
|
Full Usage:
this.WithHeight(height)
Parameters:
int
|
Sets the chart's height.
|
Full Usage:
this.WithId(newId)
Parameters:
string
|
Sets the chart's container div id.
|
Full Usage:
this.WithLabel(label)
Parameters:
string
|
Sets the data series label. Use this method if the chart's data is a single series.
|
Full Usage:
this.WithLabels(labels)
Parameters:
seq<string>
|
Sets the data series labels. Use this method if the chart's data is a series collection.
|
Full Usage:
this.WithLegend(enabled)
Parameters:
bool
|
Display/hide the legend.
|
|
Sets the chart's configuration options.
|
Full Usage:
this.WithSize(width, height)
Parameters:
int
height : int
|
Sets the chart's width and height.
|
Full Usage:
this.WithTitle(title)
Parameters:
string
|
Sets the chart's title.
|
Full Usage:
this.WithWidth(width)
Parameters:
int
|
Sets the chart's width.
|
Full Usage:
this.WithXTitle(xTitle)
Parameters:
string
|
Sets the chart's X-axis title.
|
Full Usage:
this.WithYTitle(yTitle)
Parameters:
string
|
Sets the chart's Y-axis title.
|
Static member | Description |
Full Usage:
GoogleChart.Create(data) (labels) (options) (type)
Parameters:
seq<Series>
labels : seq<string> option
options : Options
type : ChartGallery
Returns: GoogleChart
|
|
Full Usage:
GoogleChart.CreateFromDataTable(dataTable) (options) (type)
Parameters:
DataTable
options : Options
type : ChartGallery
Returns: GoogleChart
|
|