Skip to content

Documentation v1.0.0


Documentation / @openassistant/echarts / ScatterplotOutputData

Type Alias: ScatterplotOutputData

ScatterplotOutputData = object

Defined in: components/echarts/src/scatterplot/scatter-plot-component.tsx:41

The data of the scatterplot function.

Param

The id of the scatterplot.

Param

The name of the dataset.

Param

The name of the x variable.

Param

The name of the y variable.

Param

The x data.

Param

The y data.

Param

The regression results.

Param

The indices of the selected points.

Param

The callback function can be used to sync the selections of the scatterplot with the original dataset.

Param

The theme of the scatterplot.

Param

Whether to show the loess regression.

Param

Whether to show the regression line.

Properties

datasetName

datasetName: string

Defined in: components/echarts/src/scatterplot/scatter-plot-component.tsx:43


filteredIndex?

optional filteredIndex: number[]

Defined in: components/echarts/src/scatterplot/scatter-plot-component.tsx:49


id?

optional id: string

Defined in: components/echarts/src/scatterplot/scatter-plot-component.tsx:42


isDraggable?

optional isDraggable: boolean

Defined in: components/echarts/src/scatterplot/scatter-plot-component.tsx:56


isExpanded?

optional isExpanded: boolean

Defined in: components/echarts/src/scatterplot/scatter-plot-component.tsx:54


onSelected?

optional onSelected: OnSelected

Defined in: components/echarts/src/scatterplot/scatter-plot-component.tsx:50


regressionResults

regressionResults: ComputeRegressionResult

Defined in: components/echarts/src/scatterplot/scatter-plot-component.tsx:48


setIsExpanded()?

optional setIsExpanded: (isExpanded) => void

Defined in: components/echarts/src/scatterplot/scatter-plot-component.tsx:55

Parameters

isExpanded

boolean

Returns

void


showLoess?

optional showLoess: boolean

Defined in: components/echarts/src/scatterplot/scatter-plot-component.tsx:52


showRegressionLine?

optional showRegressionLine: boolean

Defined in: components/echarts/src/scatterplot/scatter-plot-component.tsx:53


theme?

optional theme: string

Defined in: components/echarts/src/scatterplot/scatter-plot-component.tsx:51


xData

xData: number[]

Defined in: components/echarts/src/scatterplot/scatter-plot-component.tsx:46


xVariableName

xVariableName: string

Defined in: components/echarts/src/scatterplot/scatter-plot-component.tsx:44


yData

yData: number[]

Defined in: components/echarts/src/scatterplot/scatter-plot-component.tsx:47


yVariableName

yVariableName: string

Defined in: components/echarts/src/scatterplot/scatter-plot-component.tsx:45

Released under the MIT License.