I've got the following Highchart working for the most part but I can't get custom data points to show in my tooltip for my 3rd series in a stacked bar chart. Am I formatting the data in the series wrong for my custom data in the tooltip? USMFalse and sentNotAnswered are the custom data items I'm interested in. The USMFalse and sentNotAnswered are values that added together give me the corresponding data value. ie for the first on 3 + 8 = 11 which is the red component of the stacked bar
Fiddle sample here JSFiddle
...
series: [{
"type": "bar",
"data": [3056, 6681, 4169, 4399, 2046, 6504, 8435],
"color": "#D4D3D2",
"name": "Non-Targeted"
},
{
"type": "bar",
"data": [4, 0, 1, 0, 6, 0, 0],
"color": "#16DE47",
"name": "Participating"
},
{
"type": "bar",
"color": "#FF5733",
"name": "Targeted",
"data": [11, 0, 0, 0, 13, 0, 0],
"USMFalse": [3, 0, 0, 0, 4, 0, 0],
"sentNotAnswered": [8, 0, 0, 0, 9, 0, 0]
}
]