I am trying to build a combination chart of highchart : bubble and 4 area charts.
It only displays one or the other not both(I mean all 5).
How do you join 2 different series : one with map and other without.
Attached is my code below:
“series”: [“map”, [“unique”, [“getColumn”, 1] ], //Unique values from instititution name
{
“type”:“bubble”,
“color”: “#2994C7”,
“yAxis”:0,
“xAxis”:0,
“name”:[“item”],
“data”: [“map”,[“filter”,[“getColumn”, 1,2,3,4],[“==”, [“get”,[“item”],0], [“item”,2] ] ] ,
[ [“get”,[“item”],1],[“get”,[“item”],2], [“get”,[“item”],3] ]]
},
{ // next four series are for color
"type": "area",
"yAxis":1,
"xAxis":1,
"fillOpacity": 0.4,
"data": [[-1, -1], [0, -1]]
},
{ // next four series are for color
"type": "area",
"yAxis":1,
"xAxis":1,
"fillOpacity": 0.4,
"data": [[-1,1],[0, 1]]
},
{ // next four series are for color
"type": "area",
"yAxis":1,
"xAxis":1,
"fillOpacity": 0.4,
"data": [[0, 1],[1, 1]]
},
{ // next four series are for color
"type": "area",
"yAxis":1,
"xAxis":1,
"fillOpacity": 0.4,
"data": [[0, -1],[1,-1]]
}
]