I have multidimensional data that I need to visualize in Google charts. What I mean with multidimensional is that it might contain multiple dimensional normal columns (String, date... ) and multiple numerical columns.
For example, consider the following simple data; composed of three String dimensions and a numerical value:
Profession (String) | Country (String) | Gender (String) | income (Numerical)
Doctor Germany male 30000
Engineer Austria female 20000
Normal google charts (e.g. Bar or Line) has typically two dimensions; i.e., it can visualize data of the form (for example):
Profession | income
Doctor 30000
Engineer 20000
Which has only one dimension and a numerical value.
Currently, my trick is to use the additional dimensions as annotations, which is not the best way around to do it. Any suggestions about possible other charts/settings to visualize such multidimensional data?