Is it possible to create bar charts in workshop based on two different object sets? For example I have two objects set Object A and Object B, I want to create a 3-D bar chart with X-axis( a date column) coming from Object A and Y-axis showing count categories i.e. coming from Object B. Edit - Object A is linked with Object B with 1-N link.
I didn't find anything in workshop itself and I was trying to do it with function based charts but not sure how to do it.
Going for Functions backed Charts should work. The crux of the work is to figure out which computation you need in the function to obtain what you want from the raw objects.
Assuming a cardinality of the categories for Object A and Object B being low enough (<<10k, let's assume 100), you would likely (below is only pseudocode, untested):
And you would have another function, which for a particular object A can get you the breakdown of Object Bs
See docs
Note: If you want a "3D Chart" as in "With volumes" you might want to look at Vega plot available in Quiver. The pre-requisite will likely be the same in terms of function computation, but this would offer you additional charts options if the default ones in Workshop don't match you expectations.