How to display Kubernetes status conditions produced by kube-metrics-adapter?

Does anyone have any examples of how to display Kubernetes status conditions produced by kube-metrics-adapter?

My metrics look like this:

kube_horizontalpodautoscaler_status_condition{condition="AbleToScale",status="false"} 0
kube_horizontalpodautoscaler_status_condition{condition="AbleToScale",status="unknown"} 0```
I'd like to display this as one metric on a single panel, showing the value of the `status` label for the metric that has value 1. Ideally, I'd also be able to change the color based on the `status` label.

For example, I'd like this to display `true` in `green` with the current metric value. If the active condition changes, the panel could display `false` in `red`.

You can use some AND and == to get one of three values: -1, 0, 1. Then do value mapping and color thresholds on that. Sorry am on mobile right now so hard to expand more on it at the moment.