You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, fist i like to say that i like the work done. it looks great.
I am looking for a customization of the ToolTip. I like to show a custom value here.
i understand that i need to do this with "segmentTooltipContent", the real question is how to put 'custom' information in the tool tip.
From the data set below, i like to add 'type': 'Service C' in the ToolTip. How to do that? How ro address that part of the data set?
@12christiaan the segmentTooltipContent gives you access to the group and label of the segment. If your additional field type is based on these two, can you just do a lookup for it and derive it from the group + label?
Hi, fist i like to say that i like the work done. it looks great.
I am looking for a customization of the ToolTip. I like to show a custom value here.
i understand that i need to do this with "segmentTooltipContent", the real question is how to put 'custom' information in the tool tip.
From the data set below, i like to add 'type': 'Service C' in the ToolTip. How to do that? How ro address that part of the data set?
e.g.
{'group': 'Team A', 'data': [{
'label': 'Action B',
'type': 'Service C',
'data': [
{'timeRange': ['2022-06-01T01:01:01.001Z', '2022-09-30T01:01:01.001Z'], 'val': 'Design'},
{'timeRange': ['2022-09-30T01:01:01.001Z', '2023-01-29T01:01:01.001Z'], 'val': 'Installation'}
etc.
The text was updated successfully, but these errors were encountered: