LineSeries
A line series chart connects data points with a continuous line, making it easy to observe changes or trends over 2-variable paired data, helping to reveal dependencies or correlations (or both). The chart allows for assigning the variables to both X and Y-axis.
XYChart.LineSeries
XYChart.LineSeries provides a slot for defining a LineSeries.
XYChartLineSeriesProps
Signature:
export declare type XYChartLineSeriesProps = <, > & & {
/**
* 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
*/
actions?: (datapoint: ) => ;
/**
* Show the datapoints always, or auto based on a threshold amount.
* @defaultValue
*/
pointsDisplay?: ;
/**
* Line interpolation curve type
*/
curve?: ;
};