DotSeries
The DotSeries is a type of shape that provides a two-dimensional representation of data in which pairs of values are shown. This shape turns out great for representing groups of values spread in classes. It can be an essential component when creating charts such as Scatter and Dot Plots.
XYChart.DotSeries
XYChart.DotSeries provides a slot for defining a DotSeries.
XYChartDotSeriesProps
Signature:
export declare type XYChartDotSeriesProps = & & {
/**
* Series name.
* @deprecated - Use nameAccessor instead. This key will be removed in a future release.
*/
name?: ;
/**
* Accessor function to retrieve the data for the x1.
*/
x1Accessor?: ;
/**
* Accessor function to retrieve the data for the y1.
*/
y1Accessor?: ;
/**
* Series ID accessor.
*/
seriesIdAccessor?: ;
/**
* Series name accessor.
*/
nameAccessor?: ;
/**
* Custom actions to be shown in the tooltip and legend.
* For tooltip, information about the selected datapoint is displayed.
* For legend, the first parameter returns the first datapoint of the series and the second parameter returns the series object.
*/
actions?: (datapoint: , _series?: ) => ;
/**
* Determines the visual appearance of the dot, such as , , , or .
* @defaultValue
*/
shape?: ;
};