Hello, I am new to Grafana and have been able to create a few dashboards. I am still getting used to the interface and how to configure dashboards. I want to create a bar chart that displays the following:
I can create a bar chart that displays one of the values, but not both. My data looks like:
I am using mssql for my data source. MY query is as follows:
select getdate()as Time , Facility as Metric, ValueOne, ValueTwo from MYTable
How can I get the second Value to display as a separate column instead of adding it to the first value?
Thanks.