Lets say some data(original or aggregated) as below is passed to mod from Spotfire (e.g. in order to draw a simple bar chart):
series={
series1:{
x:['A','B','D'},
y:[1,2,4]},
series2:{
x:['A','B','C','D'],
y:[1,2,3,4]}
};
we would like to have an option to pass data in below form, i.e. fill those non-existing data with null (or preferably any configurable value like 0).
series={
series1:{
x:['A','B','C','D'},
y:[1,2,null,4]},
series2:{
x:['A','B','C','D'],
y:[1,2,3,4]}
};