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.
*/
name: ;
/**
* Accessor function to retrieve the data for the x1.
*/
x1Accessor?: ;
/**
* Accessor function to retrieve the data for the y1.
*/
y1Accessor?: ;
/**
* Custom actions to be shown in the tooltip
*/
actions?: (datapoint: ) => ;
};
Still have questions?
Find answers in the Dynatrace Community