Interface XYUniqueXOptions

interface XYUniqueXOptions {
    algorithm?: "sum" | "average";
    isSorted?: boolean;
}

Properties

algorithm?: "sum" | "average"

either 'average' or 'sum'

Default

'average'
isSorted?: boolean

if false the DataXY has to be sorted first

Default

true