DataPoint
Home > @gooddata/sdk-ui > DataPoint
DataPoint type
Data Point represents a value computed for particular data series, possibly sliced for additional set of attribute elements OR possibly being a total.
Signature:
export type DataPoint = {
readonly rawValue: DataValue;
formattedValue(): null | string;
readonly coordinates: DataPointCoordinates;
readonly seriesDesc: DataSeriesDescriptor;
readonly sliceDesc?: DataSliceDescriptor;
readonly total?: boolean;
};
References: DataValue, DataPointCoordinates, DataSeriesDescriptor, DataSliceDescriptor
Remarks
Technically, DataPoint is the raw data value stored in the data view decorated with all the metadata there exists about that value.