I need to use a drill-in config for a heatmap but using the fields for column groups in the colgroupby
section, i already have a drill-in config for the groups in a heatmap, but is there a way to use a similar config for Drilling-in for colgroups?
Drilling-in for columns
ivan95
#1
emoya
#2
In fact we recently released a feature that allows you to drill-in with colgroups, let me show you an example of a drill config in the Interaction manager:
let drill = {
'heatmapElementId': {
'colGroup1': [
"pickup_district",
"pickup_community_area_desc"
]
}
}
As you can see all you have to do is use the keyword colGroup1
, colGroup2
, …, as you need.
Also you can check de documentation here: https://chartfactor.com/doc/latest/visualizations/interaction_manager/#attribute-fields
ivan95
#3
I see, i didn’t notice this feature is present, i tested and it works, so thank you so much for help.