Skip to content

Commit

Permalink
Visualize: Can't use ip range to split series in xy chart
Browse files Browse the repository at this point in the history
  • Loading branch information
DianaDerevyankina committed Mar 1, 2021
1 parent c6336e5 commit 1f9273c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/vis_type_xy/public/utils/accessors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const getFieldName = (fieldName: string, index?: number) => {
};

export const isRangeAggType = (type: string | null) =>
type === BUCKET_TYPES.DATE_RANGE || type === BUCKET_TYPES.RANGE;
type === BUCKET_TYPES.DATE_RANGE || type === BUCKET_TYPES.RANGE || type === BUCKET_TYPES.IP_RANGE;

/**
* Returns accessor function for complex accessor types
Expand Down

0 comments on commit 1f9273c

Please sign in to comment.