Kibana - Pie-Chart with sum over two different fields
问题 In an index I have two mappings. "mappings" : { "deliveries" : { "properties" : { "@timestamp": { "type" : "date", "format": "yyyy-MM-dd" }, "receiptName" : { "type" : "text" }, "amountDelivered" : { "type" : "integer" }, "amountSold" : { "type" : "integer" }, "sellingPrice" : { "type" : "float" }, "earned" : { "type" : "float" } } }, "expenses" : { "properties" : { "@timestamp": { "type" : "date", "format": "yyyy-MM-dd" }, "description": { "type" : "text" }, "amount": { "type": "float" } } }