"data": {"values": [{
                "key": "test1",
                "doc_count": 14,
                "misc": {                       
                    "min": 5,
                    "max": 8,
                    "avg": 6.5                        
                }
            },
            {
                "key": "test2",
                "doc_count": 14,
                "misc": {                        
                    "min": 2,
                    "max": 8,
                    "avg": 4.5                       
                }
            }]}
Given this data a need to paint a stacked bar chart with 3 colors per each bar for min.avg and max. Currently i can not find any solution for this because this is already an aggregation coming from elastic and all examples i´ve seen for stacked bar chart use the color scale for a fields value but i need the same for 3 fields.
Is it possible with this source data ?