We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08629f3 commit 4d7b0d4Copy full SHA for 4d7b0d4
src/plugins/vis_types/xy/public/utils/accessors.tsx
@@ -83,7 +83,7 @@ export const getSplitSeriesAccessorFnMap = (
83
return m;
84
};
85
86
-// For percentile aggregation id is coming in the form `%d.%d`, where first `%d` is `id` and the second - `percents`
+// For percentile, the aggregation id is coming in the form %s.%d, where %s is agg_id and %d - percents
87
export const isPercentileIdEqualToSeriesId = (columnId: number | string, seriesColumnId: string) =>
88
columnId.toString().split('.')[0] === seriesColumnId;
89
0 commit comments