SetEmptyValue
Syntax
SetEmptyValue(emptyValue: number): voidParameters
Return Value
Description
Example
// Set empty values to zero
this.api.SetEmptyValue(0)
// Use a negative value to clearly identify missing data points
this.api.SetEmptyValue(-1)
// Common practice is to use a very large negative number
this.api.SetEmptyValue(-999999)Last updated